pyontoenv 0.1.2__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.
- pyontoenv-0.1.2/Cargo.lock +2923 -0
- pyontoenv-0.1.2/Cargo.toml +33 -0
- pyontoenv-0.1.2/PKG-INFO +13 -0
- pyontoenv-0.1.2/lib/Cargo.toml +31 -0
- pyontoenv-0.1.2/lib/src/config.rs +162 -0
- pyontoenv-0.1.2/lib/src/consts.rs +51 -0
- pyontoenv-0.1.2/lib/src/doctor.rs +113 -0
- pyontoenv-0.1.2/lib/src/lib.rs +1040 -0
- pyontoenv-0.1.2/lib/src/ontology.rs +419 -0
- pyontoenv-0.1.2/lib/src/policy.rs +99 -0
- pyontoenv-0.1.2/lib/src/util.rs +163 -0
- pyontoenv-0.1.2/lib/tests/data/Brick-1.3.ttl +47831 -0
- pyontoenv-0.1.2/lib/tests/data/model +30 -0
- pyontoenv-0.1.2/lib/tests/data/model.n3 +12 -0
- pyontoenv-0.1.2/lib/tests/data/model.nt +5 -0
- pyontoenv-0.1.2/lib/tests/data/model.ttl +30 -0
- pyontoenv-0.1.2/lib/tests/data/model.xml +18 -0
- pyontoenv-0.1.2/lib/tests/data/support/SCHEMA-FACADE_QUDT-v2.1.ttl +19 -0
- pyontoenv-0.1.2/lib/tests/data/support/SCHEMA_QUDT_NoOWL-v2.1.ttl +3638 -0
- pyontoenv-0.1.2/lib/tests/data/support/SHACL-SCHEMA-SUPPLEMENT_QUDT-v2.1.ttl +807 -0
- pyontoenv-0.1.2/lib/tests/data/support/VOCAB_QUDT-DIMENSION-VECTORS-v2.1.ttl +3839 -0
- pyontoenv-0.1.2/lib/tests/data/support/VOCAB_QUDT-PREFIX-v2.1.ttl +431 -0
- pyontoenv-0.1.2/lib/tests/data/support/VOCAB_QUDT-PREFIXES-v2.1.ttl +431 -0
- pyontoenv-0.1.2/lib/tests/data/support/VOCAB_QUDT-QUANTITY-KINDS-ALL-v2.1.ttl +22130 -0
- pyontoenv-0.1.2/lib/tests/data/support/VOCAB_QUDT-SYSTEM-OF-UNITS-ALL-v2.1.ttl +264 -0
- pyontoenv-0.1.2/lib/tests/data/support/VOCAB_QUDT-UNITS-ALL-v2.1.ttl +30698 -0
- pyontoenv-0.1.2/lib/tests/data/support/VOCAB_QUDT-UNITS-CURRENCY-v2.1.ttl +2577 -0
- pyontoenv-0.1.2/lib/tests/data/support/bacnet.ttl +28368 -0
- pyontoenv-0.1.2/lib/tests/data/support/brickpatches.ttl +1447 -0
- pyontoenv-0.1.2/lib/tests/data/support/rec.ttl +3017 -0
- pyontoenv-0.1.2/lib/tests/data/support/recimports.ttl +144 -0
- pyontoenv-0.1.2/lib/tests/data/support/ref-schema.ttl +263 -0
- pyontoenv-0.1.2/lib/tests/data2/ont1.ttl +27 -0
- pyontoenv-0.1.2/lib/tests/data2/ont2.ttl +26 -0
- pyontoenv-0.1.2/lib/tests/data2/ont3.ttl +27 -0
- pyontoenv-0.1.2/lib/tests/data2/ont4.ttl +25 -0
- pyontoenv-0.1.2/lib/tests/fileendings/model +30 -0
- pyontoenv-0.1.2/lib/tests/fileendings/model.n3 +12 -0
- pyontoenv-0.1.2/lib/tests/fileendings/model.nt +5 -0
- pyontoenv-0.1.2/lib/tests/fileendings/model.ttl +30 -0
- pyontoenv-0.1.2/lib/tests/fileendings/model.xml +18 -0
- pyontoenv-0.1.2/lib/tests/updated-ontologies/Brick-1.4-rc1.ttl +47831 -0
- pyontoenv-0.1.2/lib/tests/updates/v1/ont1.ttl +27 -0
- pyontoenv-0.1.2/lib/tests/updates/v1/ont2.ttl +26 -0
- pyontoenv-0.1.2/lib/tests/updates/v1/ont3.ttl +27 -0
- pyontoenv-0.1.2/lib/tests/updates/v1/ont4.ttl +25 -0
- pyontoenv-0.1.2/lib/tests/updates/v2/ont3.ttl +27 -0
- pyontoenv-0.1.2/lib/tests/updates/v2/ont5.ttl +26 -0
- pyontoenv-0.1.2/pyproject.toml +34 -0
- pyontoenv-0.1.2/python/.github/workflows/CI.yml +118 -0
- pyontoenv-0.1.2/python/.gitignore +72 -0
- pyontoenv-0.1.2/python/Cargo.toml +29 -0
- pyontoenv-0.1.2/python/build.rs +3 -0
- pyontoenv-0.1.2/python/poetry.lock +106 -0
- pyontoenv-0.1.2/python/requirements.dev.txt +6 -0
- pyontoenv-0.1.2/python/src/lib.rs +306 -0
- pyontoenv-0.1.2/python/test.py +23 -0
- pyontoenv-0.1.2/python/token +1 -0
|
@@ -0,0 +1,2923 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.21.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler"
|
|
16
|
+
version = "1.0.2"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ahash"
|
|
22
|
+
version = "0.7.8"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"getrandom",
|
|
27
|
+
"once_cell",
|
|
28
|
+
"version_check",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "ahash"
|
|
33
|
+
version = "0.8.11"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"cfg-if",
|
|
38
|
+
"once_cell",
|
|
39
|
+
"version_check",
|
|
40
|
+
"zerocopy",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "aho-corasick"
|
|
45
|
+
version = "1.1.3"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"memchr",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "android-tzdata"
|
|
54
|
+
version = "0.1.1"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "android_system_properties"
|
|
60
|
+
version = "0.1.5"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"libc",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "anstream"
|
|
69
|
+
version = "0.6.13"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"anstyle",
|
|
74
|
+
"anstyle-parse",
|
|
75
|
+
"anstyle-query",
|
|
76
|
+
"anstyle-wincon",
|
|
77
|
+
"colorchoice",
|
|
78
|
+
"utf8parse",
|
|
79
|
+
]
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "anstyle"
|
|
83
|
+
version = "1.0.6"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "anstyle-parse"
|
|
89
|
+
version = "0.2.3"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"utf8parse",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "anstyle-query"
|
|
98
|
+
version = "1.0.2"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"windows-sys 0.52.0",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "anstyle-wincon"
|
|
107
|
+
version = "3.0.2"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"anstyle",
|
|
112
|
+
"windows-sys 0.52.0",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "anyhow"
|
|
117
|
+
version = "1.0.82"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "autocfg"
|
|
123
|
+
version = "1.2.0"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "backtrace"
|
|
129
|
+
version = "0.3.71"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"addr2line",
|
|
134
|
+
"cc",
|
|
135
|
+
"cfg-if",
|
|
136
|
+
"libc",
|
|
137
|
+
"miniz_oxide",
|
|
138
|
+
"object",
|
|
139
|
+
"rustc-demangle",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "base64"
|
|
144
|
+
version = "0.21.7"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "bindgen"
|
|
150
|
+
version = "0.69.4"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"bitflags 2.5.0",
|
|
155
|
+
"cexpr",
|
|
156
|
+
"clang-sys",
|
|
157
|
+
"itertools",
|
|
158
|
+
"lazy_static",
|
|
159
|
+
"lazycell",
|
|
160
|
+
"log",
|
|
161
|
+
"prettyplease",
|
|
162
|
+
"proc-macro2",
|
|
163
|
+
"quote",
|
|
164
|
+
"regex",
|
|
165
|
+
"rustc-hash",
|
|
166
|
+
"shlex",
|
|
167
|
+
"syn 2.0.58",
|
|
168
|
+
"which",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "bitflags"
|
|
173
|
+
version = "1.3.2"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "bitflags"
|
|
179
|
+
version = "2.5.0"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "block-buffer"
|
|
185
|
+
version = "0.10.4"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"generic-array",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "bumpalo"
|
|
194
|
+
version = "3.16.0"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "bytes"
|
|
200
|
+
version = "1.6.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "cc"
|
|
206
|
+
version = "1.0.92"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "2678b2e3449475e95b0aa6f9b506a28e61b3dc8996592b983695e8ebb58a8b41"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"jobserver",
|
|
211
|
+
"libc",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "cexpr"
|
|
216
|
+
version = "0.6.0"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"nom",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "cfg-if"
|
|
225
|
+
version = "1.0.0"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "chrono"
|
|
231
|
+
version = "0.4.37"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "8a0d04d43504c61aa6c7531f1871dd0d418d91130162063b789da00fd7057a5e"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"android-tzdata",
|
|
236
|
+
"iana-time-zone",
|
|
237
|
+
"js-sys",
|
|
238
|
+
"num-traits",
|
|
239
|
+
"serde",
|
|
240
|
+
"wasm-bindgen",
|
|
241
|
+
"windows-targets 0.52.4",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "clang-sys"
|
|
246
|
+
version = "1.7.0"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"glob",
|
|
251
|
+
"libc",
|
|
252
|
+
"libloading",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "clap"
|
|
257
|
+
version = "4.5.4"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"clap_builder",
|
|
262
|
+
"clap_derive",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "clap_builder"
|
|
267
|
+
version = "4.5.2"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"anstream",
|
|
272
|
+
"anstyle",
|
|
273
|
+
"clap_lex",
|
|
274
|
+
"strsim 0.11.1",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "clap_derive"
|
|
279
|
+
version = "4.5.4"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"heck 0.5.0",
|
|
284
|
+
"proc-macro2",
|
|
285
|
+
"quote",
|
|
286
|
+
"syn 2.0.58",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "clap_lex"
|
|
291
|
+
version = "0.7.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "colorchoice"
|
|
297
|
+
version = "1.0.0"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "contextual"
|
|
303
|
+
version = "0.1.6"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "05ca71f324d19e85a2e976be04b5ecbb193253794a75adfe2e5044c8bef03f6a"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "core-foundation"
|
|
309
|
+
version = "0.9.4"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"core-foundation-sys",
|
|
314
|
+
"libc",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "core-foundation-sys"
|
|
319
|
+
version = "0.8.6"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "cpufeatures"
|
|
325
|
+
version = "0.2.12"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
|
328
|
+
dependencies = [
|
|
329
|
+
"libc",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "crypto-common"
|
|
334
|
+
version = "0.1.6"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"generic-array",
|
|
339
|
+
"typenum",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "darling"
|
|
344
|
+
version = "0.14.4"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"darling_core 0.14.4",
|
|
349
|
+
"darling_macro 0.14.4",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "darling"
|
|
354
|
+
version = "0.20.8"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"darling_core 0.20.8",
|
|
359
|
+
"darling_macro 0.20.8",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "darling_core"
|
|
364
|
+
version = "0.14.4"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"fnv",
|
|
369
|
+
"ident_case",
|
|
370
|
+
"proc-macro2",
|
|
371
|
+
"quote",
|
|
372
|
+
"strsim 0.10.0",
|
|
373
|
+
"syn 1.0.109",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "darling_core"
|
|
378
|
+
version = "0.20.8"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"fnv",
|
|
383
|
+
"ident_case",
|
|
384
|
+
"proc-macro2",
|
|
385
|
+
"quote",
|
|
386
|
+
"strsim 0.10.0",
|
|
387
|
+
"syn 2.0.58",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "darling_macro"
|
|
392
|
+
version = "0.14.4"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"darling_core 0.14.4",
|
|
397
|
+
"quote",
|
|
398
|
+
"syn 1.0.109",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "darling_macro"
|
|
403
|
+
version = "0.20.8"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
|
|
406
|
+
dependencies = [
|
|
407
|
+
"darling_core 0.20.8",
|
|
408
|
+
"quote",
|
|
409
|
+
"syn 2.0.58",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "decoded-char"
|
|
414
|
+
version = "0.1.1"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "5440d1dc8ea7cae44cda3c64568db29bfa2434aba51ae66a50c00488841a65a3"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "deranged"
|
|
420
|
+
version = "0.3.11"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"powerfmt",
|
|
425
|
+
"serde",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "derivative"
|
|
430
|
+
version = "2.2.0"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"proc-macro2",
|
|
435
|
+
"quote",
|
|
436
|
+
"syn 1.0.109",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "derive_builder"
|
|
441
|
+
version = "0.13.1"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "8f59169f400d8087f238c5c0c7db6a28af18681717f3b623227d92f397e938c7"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"derive_builder_macro",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "derive_builder_core"
|
|
450
|
+
version = "0.13.1"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "a4ec317cc3e7ef0928b0ca6e4a634a4d6c001672ae210438cf114a83e56b018d"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"darling 0.14.4",
|
|
455
|
+
"proc-macro2",
|
|
456
|
+
"quote",
|
|
457
|
+
"syn 1.0.109",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "derive_builder_macro"
|
|
462
|
+
version = "0.13.1"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "870368c3fb35b8031abb378861d4460f573b92238ec2152c927a21f77e3e0127"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"derive_builder_core",
|
|
467
|
+
"syn 1.0.109",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "digest"
|
|
472
|
+
version = "0.10.7"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"block-buffer",
|
|
477
|
+
"crypto-common",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "either"
|
|
482
|
+
version = "1.10.0"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "encoding_rs"
|
|
488
|
+
version = "0.8.34"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"cfg-if",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "env_filter"
|
|
497
|
+
version = "0.1.0"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
|
|
500
|
+
dependencies = [
|
|
501
|
+
"log",
|
|
502
|
+
"regex",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "env_logger"
|
|
507
|
+
version = "0.11.3"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"anstream",
|
|
512
|
+
"anstyle",
|
|
513
|
+
"env_filter",
|
|
514
|
+
"humantime",
|
|
515
|
+
"log",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "equivalent"
|
|
520
|
+
version = "1.0.1"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "errno"
|
|
526
|
+
version = "0.3.8"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"libc",
|
|
531
|
+
"windows-sys 0.52.0",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "fastrand"
|
|
536
|
+
version = "2.0.2"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "fixedbitset"
|
|
542
|
+
version = "0.4.2"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "fnv"
|
|
548
|
+
version = "1.0.7"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "foreign-types"
|
|
554
|
+
version = "0.3.2"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"foreign-types-shared",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "foreign-types-shared"
|
|
563
|
+
version = "0.1.1"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "form_urlencoded"
|
|
569
|
+
version = "1.2.1"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"percent-encoding",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "fuchsia-cprng"
|
|
578
|
+
version = "0.1.1"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "futures"
|
|
584
|
+
version = "0.3.30"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
587
|
+
dependencies = [
|
|
588
|
+
"futures-channel",
|
|
589
|
+
"futures-core",
|
|
590
|
+
"futures-executor",
|
|
591
|
+
"futures-io",
|
|
592
|
+
"futures-sink",
|
|
593
|
+
"futures-task",
|
|
594
|
+
"futures-util",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "futures-channel"
|
|
599
|
+
version = "0.3.30"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"futures-core",
|
|
604
|
+
"futures-sink",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "futures-core"
|
|
609
|
+
version = "0.3.30"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "futures-executor"
|
|
615
|
+
version = "0.3.30"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"futures-core",
|
|
620
|
+
"futures-task",
|
|
621
|
+
"futures-util",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "futures-io"
|
|
626
|
+
version = "0.3.30"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "futures-macro"
|
|
632
|
+
version = "0.3.30"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"proc-macro2",
|
|
637
|
+
"quote",
|
|
638
|
+
"syn 2.0.58",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "futures-sink"
|
|
643
|
+
version = "0.3.30"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "futures-task"
|
|
649
|
+
version = "0.3.30"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "futures-util"
|
|
655
|
+
version = "0.3.30"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"futures-channel",
|
|
660
|
+
"futures-core",
|
|
661
|
+
"futures-io",
|
|
662
|
+
"futures-macro",
|
|
663
|
+
"futures-sink",
|
|
664
|
+
"futures-task",
|
|
665
|
+
"memchr",
|
|
666
|
+
"pin-project-lite",
|
|
667
|
+
"pin-utils",
|
|
668
|
+
"slab",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "generic-array"
|
|
673
|
+
version = "0.14.7"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"typenum",
|
|
678
|
+
"version_check",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "getrandom"
|
|
683
|
+
version = "0.2.14"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"cfg-if",
|
|
688
|
+
"js-sys",
|
|
689
|
+
"libc",
|
|
690
|
+
"wasi",
|
|
691
|
+
"wasm-bindgen",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "gimli"
|
|
696
|
+
version = "0.28.1"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "glob"
|
|
702
|
+
version = "0.3.1"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "h2"
|
|
708
|
+
version = "0.3.26"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"bytes",
|
|
713
|
+
"fnv",
|
|
714
|
+
"futures-core",
|
|
715
|
+
"futures-sink",
|
|
716
|
+
"futures-util",
|
|
717
|
+
"http",
|
|
718
|
+
"indexmap 2.2.6",
|
|
719
|
+
"slab",
|
|
720
|
+
"tokio",
|
|
721
|
+
"tokio-util",
|
|
722
|
+
"tracing",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "hashbrown"
|
|
727
|
+
version = "0.12.3"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"ahash 0.7.8",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "hashbrown"
|
|
736
|
+
version = "0.13.2"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"ahash 0.8.11",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "hashbrown"
|
|
745
|
+
version = "0.14.3"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "heck"
|
|
751
|
+
version = "0.4.1"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "heck"
|
|
757
|
+
version = "0.5.0"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "hex"
|
|
763
|
+
version = "0.4.3"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "home"
|
|
769
|
+
version = "0.5.9"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"windows-sys 0.52.0",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "http"
|
|
778
|
+
version = "0.2.12"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"bytes",
|
|
783
|
+
"fnv",
|
|
784
|
+
"itoa",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "http-body"
|
|
789
|
+
version = "0.4.6"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"bytes",
|
|
794
|
+
"http",
|
|
795
|
+
"pin-project-lite",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "httparse"
|
|
800
|
+
version = "1.8.0"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "httpdate"
|
|
806
|
+
version = "1.0.3"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "humantime"
|
|
812
|
+
version = "2.1.0"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "hyper"
|
|
818
|
+
version = "0.14.28"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"bytes",
|
|
823
|
+
"futures-channel",
|
|
824
|
+
"futures-core",
|
|
825
|
+
"futures-util",
|
|
826
|
+
"h2",
|
|
827
|
+
"http",
|
|
828
|
+
"http-body",
|
|
829
|
+
"httparse",
|
|
830
|
+
"httpdate",
|
|
831
|
+
"itoa",
|
|
832
|
+
"pin-project-lite",
|
|
833
|
+
"socket2",
|
|
834
|
+
"tokio",
|
|
835
|
+
"tower-service",
|
|
836
|
+
"tracing",
|
|
837
|
+
"want",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "hyper-tls"
|
|
842
|
+
version = "0.5.0"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"bytes",
|
|
847
|
+
"hyper",
|
|
848
|
+
"native-tls",
|
|
849
|
+
"tokio",
|
|
850
|
+
"tokio-native-tls",
|
|
851
|
+
]
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "iana-time-zone"
|
|
855
|
+
version = "0.1.60"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
|
|
858
|
+
dependencies = [
|
|
859
|
+
"android_system_properties",
|
|
860
|
+
"core-foundation-sys",
|
|
861
|
+
"iana-time-zone-haiku",
|
|
862
|
+
"js-sys",
|
|
863
|
+
"wasm-bindgen",
|
|
864
|
+
"windows-core",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "iana-time-zone-haiku"
|
|
869
|
+
version = "0.1.2"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"cc",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "ident_case"
|
|
878
|
+
version = "1.0.1"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "idna"
|
|
884
|
+
version = "0.5.0"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"unicode-bidi",
|
|
889
|
+
"unicode-normalization",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "indexmap"
|
|
894
|
+
version = "1.9.3"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"autocfg",
|
|
899
|
+
"hashbrown 0.12.3",
|
|
900
|
+
"serde",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "indexmap"
|
|
905
|
+
version = "2.2.6"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"equivalent",
|
|
910
|
+
"hashbrown 0.14.3",
|
|
911
|
+
"serde",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "indoc"
|
|
916
|
+
version = "2.0.5"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "ipnet"
|
|
922
|
+
version = "2.9.0"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "iref"
|
|
928
|
+
version = "2.2.3"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "72758dab8e7c250a8643189063072ab0abf48e27eb453e0a38bbd2d7770ee8ec"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"pct-str",
|
|
933
|
+
"smallvec",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "itertools"
|
|
938
|
+
version = "0.12.1"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"either",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "itoa"
|
|
947
|
+
version = "1.0.11"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "jobserver"
|
|
953
|
+
version = "0.1.28"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"libc",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "js-sys"
|
|
962
|
+
version = "0.3.69"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"wasm-bindgen",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "json-event-parser"
|
|
971
|
+
version = "0.1.1"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "32f12e624eaeb74accb9bb48f01cb071427f68115aaafa5689acb372d7e22977"
|
|
974
|
+
|
|
975
|
+
[[package]]
|
|
976
|
+
name = "json-ld"
|
|
977
|
+
version = "0.15.1"
|
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
+
checksum = "2346062cec5e4bd2bec44378543e1e567becc6d9cf2907c468115f0f065ea0e6"
|
|
980
|
+
dependencies = [
|
|
981
|
+
"contextual",
|
|
982
|
+
"futures",
|
|
983
|
+
"json-ld-compaction",
|
|
984
|
+
"json-ld-context-processing",
|
|
985
|
+
"json-ld-core",
|
|
986
|
+
"json-ld-expansion",
|
|
987
|
+
"json-ld-syntax",
|
|
988
|
+
"json-syntax",
|
|
989
|
+
"locspan",
|
|
990
|
+
"rdf-types",
|
|
991
|
+
"thiserror",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "json-ld-compaction"
|
|
996
|
+
version = "0.15.1"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "43cd4b98ee8c3be2b7cf67fd3f3225a58201c0e8fd1d9c8dec04578d853003b7"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"contextual",
|
|
1001
|
+
"derivative",
|
|
1002
|
+
"futures",
|
|
1003
|
+
"iref",
|
|
1004
|
+
"json-ld-context-processing",
|
|
1005
|
+
"json-ld-core",
|
|
1006
|
+
"json-ld-expansion",
|
|
1007
|
+
"json-ld-syntax",
|
|
1008
|
+
"json-syntax",
|
|
1009
|
+
"langtag",
|
|
1010
|
+
"locspan",
|
|
1011
|
+
"mown",
|
|
1012
|
+
"rdf-types",
|
|
1013
|
+
"thiserror",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "json-ld-context-processing"
|
|
1018
|
+
version = "0.15.1"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "2d7c15151cc0478f0c5742a188897553ecfa9011d0eb6bf639507bd3006de9df"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"contextual",
|
|
1023
|
+
"futures",
|
|
1024
|
+
"iref",
|
|
1025
|
+
"json-ld-core",
|
|
1026
|
+
"json-ld-syntax",
|
|
1027
|
+
"locspan",
|
|
1028
|
+
"mown",
|
|
1029
|
+
"rdf-types",
|
|
1030
|
+
"thiserror",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "json-ld-core"
|
|
1035
|
+
version = "0.15.1"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "9eea3cb55f5fd5f79b43226b50a24319b51a4eac06114c9bda4e0aa99f7697f2"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"contextual",
|
|
1040
|
+
"derivative",
|
|
1041
|
+
"futures",
|
|
1042
|
+
"hashbrown 0.13.2",
|
|
1043
|
+
"iref",
|
|
1044
|
+
"json-ld-syntax",
|
|
1045
|
+
"json-syntax",
|
|
1046
|
+
"langtag",
|
|
1047
|
+
"locspan",
|
|
1048
|
+
"locspan-derive",
|
|
1049
|
+
"log",
|
|
1050
|
+
"mime",
|
|
1051
|
+
"mown",
|
|
1052
|
+
"once_cell",
|
|
1053
|
+
"permutohedron",
|
|
1054
|
+
"pretty_dtoa",
|
|
1055
|
+
"rdf-types",
|
|
1056
|
+
"ryu-js",
|
|
1057
|
+
"smallvec",
|
|
1058
|
+
"static-iref",
|
|
1059
|
+
"thiserror",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "json-ld-expansion"
|
|
1064
|
+
version = "0.15.1"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "1a292441a2258065cea9579976613976af672cf9dd56cf9e2a3bb1731a6242bf"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"contextual",
|
|
1069
|
+
"derivative",
|
|
1070
|
+
"futures",
|
|
1071
|
+
"iref",
|
|
1072
|
+
"json-ld-context-processing",
|
|
1073
|
+
"json-ld-core",
|
|
1074
|
+
"json-ld-syntax",
|
|
1075
|
+
"json-syntax",
|
|
1076
|
+
"langtag",
|
|
1077
|
+
"locspan",
|
|
1078
|
+
"mown",
|
|
1079
|
+
"rdf-types",
|
|
1080
|
+
"thiserror",
|
|
1081
|
+
]
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "json-ld-syntax"
|
|
1085
|
+
version = "0.15.1"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "66b08d81018338bcf3e9ed4d4604c31c8c3a07e688dc8abfa424e63c5aba5d4c"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"contextual",
|
|
1090
|
+
"decoded-char",
|
|
1091
|
+
"derivative",
|
|
1092
|
+
"hashbrown 0.13.2",
|
|
1093
|
+
"indexmap 1.9.3",
|
|
1094
|
+
"iref",
|
|
1095
|
+
"json-syntax",
|
|
1096
|
+
"langtag",
|
|
1097
|
+
"locspan",
|
|
1098
|
+
"locspan-derive",
|
|
1099
|
+
"rdf-types",
|
|
1100
|
+
"smallvec",
|
|
1101
|
+
"thiserror",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "json-number"
|
|
1106
|
+
version = "0.4.8"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "4c54d19ae7e6fc83aafa649707655a9a0ac956a0f62793bde4cfd193b0693fdf"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"lexical",
|
|
1111
|
+
"ryu-js",
|
|
1112
|
+
"smallvec",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "json-syntax"
|
|
1117
|
+
version = "0.9.6"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "9f2f4557e0fe320cc102bdebf9fa9471b8513e13bb34b5fc23d7e270c5f9b1cc"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"contextual",
|
|
1122
|
+
"decoded-char",
|
|
1123
|
+
"hashbrown 0.12.3",
|
|
1124
|
+
"indexmap 1.9.3",
|
|
1125
|
+
"json-number",
|
|
1126
|
+
"locspan",
|
|
1127
|
+
"locspan-derive",
|
|
1128
|
+
"ryu-js",
|
|
1129
|
+
"smallstr",
|
|
1130
|
+
"smallvec",
|
|
1131
|
+
]
|
|
1132
|
+
|
|
1133
|
+
[[package]]
|
|
1134
|
+
name = "langtag"
|
|
1135
|
+
version = "0.3.4"
|
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1137
|
+
checksum = "ed60c85f254d6ae8450cec15eedd921efbc4d1bdf6fcf6202b9a58b403f6f805"
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "lazy_static"
|
|
1141
|
+
version = "1.4.0"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "lazycell"
|
|
1147
|
+
version = "1.3.0"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "lexical"
|
|
1153
|
+
version = "6.1.1"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"lexical-core",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "lexical-core"
|
|
1162
|
+
version = "0.8.5"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"lexical-parse-float",
|
|
1167
|
+
"lexical-parse-integer",
|
|
1168
|
+
"lexical-util",
|
|
1169
|
+
"lexical-write-float",
|
|
1170
|
+
"lexical-write-integer",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "lexical-parse-float"
|
|
1175
|
+
version = "0.8.5"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"lexical-parse-integer",
|
|
1180
|
+
"lexical-util",
|
|
1181
|
+
"static_assertions",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "lexical-parse-integer"
|
|
1186
|
+
version = "0.8.6"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"lexical-util",
|
|
1191
|
+
"static_assertions",
|
|
1192
|
+
]
|
|
1193
|
+
|
|
1194
|
+
[[package]]
|
|
1195
|
+
name = "lexical-util"
|
|
1196
|
+
version = "0.8.5"
|
|
1197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1198
|
+
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
|
1199
|
+
dependencies = [
|
|
1200
|
+
"static_assertions",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "lexical-write-float"
|
|
1205
|
+
version = "0.8.5"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
|
1208
|
+
dependencies = [
|
|
1209
|
+
"lexical-util",
|
|
1210
|
+
"lexical-write-integer",
|
|
1211
|
+
"static_assertions",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "lexical-write-integer"
|
|
1216
|
+
version = "0.8.5"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"lexical-util",
|
|
1221
|
+
"static_assertions",
|
|
1222
|
+
]
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "libc"
|
|
1226
|
+
version = "0.2.153"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "libloading"
|
|
1232
|
+
version = "0.8.3"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"cfg-if",
|
|
1237
|
+
"windows-targets 0.52.4",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "linux-raw-sys"
|
|
1242
|
+
version = "0.4.13"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "lock_api"
|
|
1248
|
+
version = "0.4.11"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"autocfg",
|
|
1253
|
+
"scopeguard",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "locspan"
|
|
1258
|
+
version = "0.7.16"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "6eb541fabac50f90782ec4fafa7b0b3961adc0d1862c7c7a863dc94ed5541d73"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"contextual",
|
|
1263
|
+
"hashbrown 0.13.2",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "locspan-derive"
|
|
1268
|
+
version = "0.6.0"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "e88991223b049a3d29ca1f60c05639581336a0f3ee4bf8a659dddecc11c4961a"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"proc-macro-error",
|
|
1273
|
+
"proc-macro2",
|
|
1274
|
+
"quote",
|
|
1275
|
+
"syn 1.0.109",
|
|
1276
|
+
]
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "log"
|
|
1280
|
+
version = "0.4.21"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "md-5"
|
|
1286
|
+
version = "0.10.6"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"cfg-if",
|
|
1291
|
+
"digest",
|
|
1292
|
+
]
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "memchr"
|
|
1296
|
+
version = "2.7.2"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "memoffset"
|
|
1302
|
+
version = "0.9.1"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"autocfg",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "mime"
|
|
1311
|
+
version = "0.3.17"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "minimal-lexical"
|
|
1317
|
+
version = "0.2.1"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "miniz_oxide"
|
|
1323
|
+
version = "0.7.2"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"adler",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "mio"
|
|
1332
|
+
version = "0.8.11"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"libc",
|
|
1337
|
+
"wasi",
|
|
1338
|
+
"windows-sys 0.48.0",
|
|
1339
|
+
]
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "mown"
|
|
1343
|
+
version = "0.2.2"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "e7627d8bbeb17edbf1c3f74b21488e4af680040da89713b4217d0010e9cbd97e"
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "native-tls"
|
|
1349
|
+
version = "0.2.11"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"lazy_static",
|
|
1354
|
+
"libc",
|
|
1355
|
+
"log",
|
|
1356
|
+
"openssl",
|
|
1357
|
+
"openssl-probe",
|
|
1358
|
+
"openssl-sys",
|
|
1359
|
+
"schannel",
|
|
1360
|
+
"security-framework",
|
|
1361
|
+
"security-framework-sys",
|
|
1362
|
+
"tempfile",
|
|
1363
|
+
]
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "nom"
|
|
1367
|
+
version = "7.1.3"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1370
|
+
dependencies = [
|
|
1371
|
+
"memchr",
|
|
1372
|
+
"minimal-lexical",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "num-conv"
|
|
1377
|
+
version = "0.1.0"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "num-traits"
|
|
1383
|
+
version = "0.2.18"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"autocfg",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "object"
|
|
1392
|
+
version = "0.32.2"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"memchr",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "once_cell"
|
|
1401
|
+
version = "1.19.0"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "ontoenv"
|
|
1407
|
+
version = "0.1.2"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"anyhow",
|
|
1410
|
+
"chrono",
|
|
1411
|
+
"clap",
|
|
1412
|
+
"derive_builder",
|
|
1413
|
+
"env_logger",
|
|
1414
|
+
"glob",
|
|
1415
|
+
"json-ld",
|
|
1416
|
+
"lazy_static",
|
|
1417
|
+
"log",
|
|
1418
|
+
"oxigraph",
|
|
1419
|
+
"petgraph",
|
|
1420
|
+
"regex",
|
|
1421
|
+
"reqwest",
|
|
1422
|
+
"serde",
|
|
1423
|
+
"serde_json",
|
|
1424
|
+
"serde_regex",
|
|
1425
|
+
"serde_with",
|
|
1426
|
+
"tempdir",
|
|
1427
|
+
"tempfile",
|
|
1428
|
+
"walkdir",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "ontoenv-cli"
|
|
1433
|
+
version = "0.1.2"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"anyhow",
|
|
1436
|
+
"chrono",
|
|
1437
|
+
"clap",
|
|
1438
|
+
"env_logger",
|
|
1439
|
+
"ontoenv",
|
|
1440
|
+
"oxigraph",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "openssl"
|
|
1445
|
+
version = "0.10.64"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"bitflags 2.5.0",
|
|
1450
|
+
"cfg-if",
|
|
1451
|
+
"foreign-types",
|
|
1452
|
+
"libc",
|
|
1453
|
+
"once_cell",
|
|
1454
|
+
"openssl-macros",
|
|
1455
|
+
"openssl-sys",
|
|
1456
|
+
]
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "openssl-macros"
|
|
1460
|
+
version = "0.1.1"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"proc-macro2",
|
|
1465
|
+
"quote",
|
|
1466
|
+
"syn 2.0.58",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "openssl-probe"
|
|
1471
|
+
version = "0.1.5"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "openssl-sys"
|
|
1477
|
+
version = "0.9.102"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"cc",
|
|
1482
|
+
"libc",
|
|
1483
|
+
"pkg-config",
|
|
1484
|
+
"vcpkg",
|
|
1485
|
+
]
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "oxigraph"
|
|
1489
|
+
version = "0.3.22"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "3285d2243e62417ee2cabeae86d3dcc07cfb7e5eaf1cd94b799d4f68f3d3a149"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"digest",
|
|
1494
|
+
"getrandom",
|
|
1495
|
+
"hex",
|
|
1496
|
+
"js-sys",
|
|
1497
|
+
"json-event-parser",
|
|
1498
|
+
"lazy_static",
|
|
1499
|
+
"libc",
|
|
1500
|
+
"md-5",
|
|
1501
|
+
"oxilangtag",
|
|
1502
|
+
"oxiri",
|
|
1503
|
+
"oxrdf",
|
|
1504
|
+
"oxrocksdb-sys",
|
|
1505
|
+
"oxsdatatypes",
|
|
1506
|
+
"rand 0.8.5",
|
|
1507
|
+
"regex",
|
|
1508
|
+
"rio_api",
|
|
1509
|
+
"rio_turtle",
|
|
1510
|
+
"rio_xml",
|
|
1511
|
+
"sha-1",
|
|
1512
|
+
"sha2",
|
|
1513
|
+
"siphasher",
|
|
1514
|
+
"sparesults",
|
|
1515
|
+
"spargebra",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "oxilangtag"
|
|
1520
|
+
version = "0.1.5"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "23f3f87617a86af77fa3691e6350483e7154c2ead9f1261b75130e21ca0f8acb"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"serde",
|
|
1525
|
+
]
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "oxiri"
|
|
1529
|
+
version = "0.2.3"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "d05417ee46e2eb40dd9d590b4d67fc2408208b3a48a6b7f71d2bc1d7ce12a3e0"
|
|
1532
|
+
|
|
1533
|
+
[[package]]
|
|
1534
|
+
name = "oxrdf"
|
|
1535
|
+
version = "0.1.7"
|
|
1536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
+
checksum = "309287c8a757e25e06a6156acbd73770bac3e319123f5b4bc0a42e232caf97a5"
|
|
1538
|
+
dependencies = [
|
|
1539
|
+
"oxilangtag",
|
|
1540
|
+
"oxiri",
|
|
1541
|
+
"oxsdatatypes",
|
|
1542
|
+
"rand 0.8.5",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "oxrocksdb-sys"
|
|
1547
|
+
version = "0.3.22"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "9ae9dedf33a65029a914b6fb4abc117ead4d4a6e7af295d2979a76f77cb36190"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"bindgen",
|
|
1552
|
+
"cc",
|
|
1553
|
+
"libc",
|
|
1554
|
+
]
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "oxsdatatypes"
|
|
1558
|
+
version = "0.1.3"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "edeb0770b5afd066427e12e38998e15de7c2cc6048a5817bbb602130d42a55c9"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"js-sys",
|
|
1563
|
+
]
|
|
1564
|
+
|
|
1565
|
+
[[package]]
|
|
1566
|
+
name = "parking_lot"
|
|
1567
|
+
version = "0.12.1"
|
|
1568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1569
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
1570
|
+
dependencies = [
|
|
1571
|
+
"lock_api",
|
|
1572
|
+
"parking_lot_core",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "parking_lot_core"
|
|
1577
|
+
version = "0.9.9"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"cfg-if",
|
|
1582
|
+
"libc",
|
|
1583
|
+
"redox_syscall",
|
|
1584
|
+
"smallvec",
|
|
1585
|
+
"windows-targets 0.48.5",
|
|
1586
|
+
]
|
|
1587
|
+
|
|
1588
|
+
[[package]]
|
|
1589
|
+
name = "pct-str"
|
|
1590
|
+
version = "1.2.0"
|
|
1591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
|
+
checksum = "77d207ec8d182c2fef45f028b9b9507770df19e89b3e14827ccd95d4a23f6003"
|
|
1593
|
+
dependencies = [
|
|
1594
|
+
"utf8-decode",
|
|
1595
|
+
]
|
|
1596
|
+
|
|
1597
|
+
[[package]]
|
|
1598
|
+
name = "peg"
|
|
1599
|
+
version = "0.8.2"
|
|
1600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1601
|
+
checksum = "400bcab7d219c38abf8bd7cc2054eb9bbbd4312d66f6a5557d572a203f646f61"
|
|
1602
|
+
dependencies = [
|
|
1603
|
+
"peg-macros",
|
|
1604
|
+
"peg-runtime",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "peg-macros"
|
|
1609
|
+
version = "0.8.2"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "46e61cce859b76d19090f62da50a9fe92bab7c2a5f09e183763559a2ac392c90"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"peg-runtime",
|
|
1614
|
+
"proc-macro2",
|
|
1615
|
+
"quote",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "peg-runtime"
|
|
1620
|
+
version = "0.8.2"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "36bae92c60fa2398ce4678b98b2c4b5a7c61099961ca1fa305aec04a9ad28922"
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "percent-encoding"
|
|
1626
|
+
version = "2.3.1"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "permutohedron"
|
|
1632
|
+
version = "0.2.4"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "b687ff7b5da449d39e418ad391e5e08da53ec334903ddbb921db208908fc372c"
|
|
1635
|
+
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "petgraph"
|
|
1638
|
+
version = "0.6.4"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9"
|
|
1641
|
+
dependencies = [
|
|
1642
|
+
"fixedbitset",
|
|
1643
|
+
"indexmap 2.2.6",
|
|
1644
|
+
"serde",
|
|
1645
|
+
"serde_derive",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "pin-project-lite"
|
|
1650
|
+
version = "0.2.14"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "pin-utils"
|
|
1656
|
+
version = "0.1.0"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "pkg-config"
|
|
1662
|
+
version = "0.3.30"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "portable-atomic"
|
|
1668
|
+
version = "1.6.0"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "powerfmt"
|
|
1674
|
+
version = "0.2.0"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "ppv-lite86"
|
|
1680
|
+
version = "0.2.17"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "pretty_dtoa"
|
|
1686
|
+
version = "0.3.0"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "a239bcdfda2c685fda1add3b4695c06225f50075e3cfb5b954e91545587edff2"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"ryu_floating_decimal",
|
|
1691
|
+
]
|
|
1692
|
+
|
|
1693
|
+
[[package]]
|
|
1694
|
+
name = "prettyplease"
|
|
1695
|
+
version = "0.2.17"
|
|
1696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
+
checksum = "8d3928fb5db768cb86f891ff014f0144589297e3c6a1aba6ed7cecfdace270c7"
|
|
1698
|
+
dependencies = [
|
|
1699
|
+
"proc-macro2",
|
|
1700
|
+
"syn 2.0.58",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "proc-macro-error"
|
|
1705
|
+
version = "1.0.4"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"proc-macro-error-attr",
|
|
1710
|
+
"proc-macro2",
|
|
1711
|
+
"quote",
|
|
1712
|
+
"syn 1.0.109",
|
|
1713
|
+
"version_check",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "proc-macro-error-attr"
|
|
1718
|
+
version = "1.0.4"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
1721
|
+
dependencies = [
|
|
1722
|
+
"proc-macro2",
|
|
1723
|
+
"quote",
|
|
1724
|
+
"version_check",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "proc-macro2"
|
|
1729
|
+
version = "1.0.79"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e"
|
|
1732
|
+
dependencies = [
|
|
1733
|
+
"unicode-ident",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "pyo3"
|
|
1738
|
+
version = "0.21.1"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "a7a8b1990bd018761768d5e608a13df8bd1ac5f678456e0f301bb93e5f3ea16b"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"cfg-if",
|
|
1743
|
+
"indoc",
|
|
1744
|
+
"libc",
|
|
1745
|
+
"memoffset",
|
|
1746
|
+
"parking_lot",
|
|
1747
|
+
"portable-atomic",
|
|
1748
|
+
"pyo3-build-config",
|
|
1749
|
+
"pyo3-ffi",
|
|
1750
|
+
"pyo3-macros",
|
|
1751
|
+
"unindent",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "pyo3-build-config"
|
|
1756
|
+
version = "0.21.1"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "650dca34d463b6cdbdb02b1d71bfd6eb6b6816afc708faebb3bac1380ff4aef7"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"once_cell",
|
|
1761
|
+
"target-lexicon",
|
|
1762
|
+
]
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "pyo3-ffi"
|
|
1766
|
+
version = "0.21.1"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "09a7da8fc04a8a2084909b59f29e1b8474decac98b951d77b80b26dc45f046ad"
|
|
1769
|
+
dependencies = [
|
|
1770
|
+
"libc",
|
|
1771
|
+
"pyo3-build-config",
|
|
1772
|
+
]
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "pyo3-macros"
|
|
1776
|
+
version = "0.21.1"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "4b8a199fce11ebb28e3569387228836ea98110e43a804a530a9fd83ade36d513"
|
|
1779
|
+
dependencies = [
|
|
1780
|
+
"proc-macro2",
|
|
1781
|
+
"pyo3-macros-backend",
|
|
1782
|
+
"quote",
|
|
1783
|
+
"syn 2.0.58",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "pyo3-macros-backend"
|
|
1788
|
+
version = "0.21.1"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "93fbbfd7eb553d10036513cb122b888dcd362a945a00b06c165f2ab480d4cc3b"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"heck 0.4.1",
|
|
1793
|
+
"proc-macro2",
|
|
1794
|
+
"pyo3-build-config",
|
|
1795
|
+
"quote",
|
|
1796
|
+
"syn 2.0.58",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "pyontoenv"
|
|
1801
|
+
version = "0.1.2"
|
|
1802
|
+
dependencies = [
|
|
1803
|
+
"anyhow",
|
|
1804
|
+
"env_logger",
|
|
1805
|
+
"log",
|
|
1806
|
+
"ontoenv",
|
|
1807
|
+
"oxigraph",
|
|
1808
|
+
"pyo3",
|
|
1809
|
+
"pyo3-build-config",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "quick-xml"
|
|
1814
|
+
version = "0.28.2"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"memchr",
|
|
1819
|
+
]
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "quote"
|
|
1823
|
+
version = "1.0.36"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
1826
|
+
dependencies = [
|
|
1827
|
+
"proc-macro2",
|
|
1828
|
+
]
|
|
1829
|
+
|
|
1830
|
+
[[package]]
|
|
1831
|
+
name = "rand"
|
|
1832
|
+
version = "0.4.6"
|
|
1833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1834
|
+
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
|
|
1835
|
+
dependencies = [
|
|
1836
|
+
"fuchsia-cprng",
|
|
1837
|
+
"libc",
|
|
1838
|
+
"rand_core 0.3.1",
|
|
1839
|
+
"rdrand",
|
|
1840
|
+
"winapi",
|
|
1841
|
+
]
|
|
1842
|
+
|
|
1843
|
+
[[package]]
|
|
1844
|
+
name = "rand"
|
|
1845
|
+
version = "0.8.5"
|
|
1846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1848
|
+
dependencies = [
|
|
1849
|
+
"libc",
|
|
1850
|
+
"rand_chacha",
|
|
1851
|
+
"rand_core 0.6.4",
|
|
1852
|
+
]
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "rand_chacha"
|
|
1856
|
+
version = "0.3.1"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"ppv-lite86",
|
|
1861
|
+
"rand_core 0.6.4",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "rand_core"
|
|
1866
|
+
version = "0.3.1"
|
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1868
|
+
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
|
|
1869
|
+
dependencies = [
|
|
1870
|
+
"rand_core 0.4.2",
|
|
1871
|
+
]
|
|
1872
|
+
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "rand_core"
|
|
1875
|
+
version = "0.4.2"
|
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
+
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "rand_core"
|
|
1881
|
+
version = "0.6.4"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"getrandom",
|
|
1886
|
+
]
|
|
1887
|
+
|
|
1888
|
+
[[package]]
|
|
1889
|
+
name = "rdf-types"
|
|
1890
|
+
version = "0.15.4"
|
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
+
checksum = "d937485610ef88fde97044e8613bdbe8f585f75ab7a665f0d37b9a283621a0c8"
|
|
1893
|
+
dependencies = [
|
|
1894
|
+
"contextual",
|
|
1895
|
+
"indexmap 1.9.3",
|
|
1896
|
+
"iref",
|
|
1897
|
+
"langtag",
|
|
1898
|
+
"locspan",
|
|
1899
|
+
"locspan-derive",
|
|
1900
|
+
"thiserror",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "rdrand"
|
|
1905
|
+
version = "0.4.0"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"rand_core 0.3.1",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "redox_syscall"
|
|
1914
|
+
version = "0.4.1"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"bitflags 1.3.2",
|
|
1919
|
+
]
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "regex"
|
|
1923
|
+
version = "1.10.4"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
|
1926
|
+
dependencies = [
|
|
1927
|
+
"aho-corasick",
|
|
1928
|
+
"memchr",
|
|
1929
|
+
"regex-automata",
|
|
1930
|
+
"regex-syntax",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "regex-automata"
|
|
1935
|
+
version = "0.4.6"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
1938
|
+
dependencies = [
|
|
1939
|
+
"aho-corasick",
|
|
1940
|
+
"memchr",
|
|
1941
|
+
"regex-syntax",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "regex-syntax"
|
|
1946
|
+
version = "0.8.3"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "remove_dir_all"
|
|
1952
|
+
version = "0.5.3"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
|
1955
|
+
dependencies = [
|
|
1956
|
+
"winapi",
|
|
1957
|
+
]
|
|
1958
|
+
|
|
1959
|
+
[[package]]
|
|
1960
|
+
name = "reqwest"
|
|
1961
|
+
version = "0.11.27"
|
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
+
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
|
|
1964
|
+
dependencies = [
|
|
1965
|
+
"base64",
|
|
1966
|
+
"bytes",
|
|
1967
|
+
"encoding_rs",
|
|
1968
|
+
"futures-core",
|
|
1969
|
+
"futures-util",
|
|
1970
|
+
"h2",
|
|
1971
|
+
"http",
|
|
1972
|
+
"http-body",
|
|
1973
|
+
"hyper",
|
|
1974
|
+
"hyper-tls",
|
|
1975
|
+
"ipnet",
|
|
1976
|
+
"js-sys",
|
|
1977
|
+
"log",
|
|
1978
|
+
"mime",
|
|
1979
|
+
"native-tls",
|
|
1980
|
+
"once_cell",
|
|
1981
|
+
"percent-encoding",
|
|
1982
|
+
"pin-project-lite",
|
|
1983
|
+
"rustls-pemfile",
|
|
1984
|
+
"serde",
|
|
1985
|
+
"serde_json",
|
|
1986
|
+
"serde_urlencoded",
|
|
1987
|
+
"sync_wrapper",
|
|
1988
|
+
"system-configuration",
|
|
1989
|
+
"tokio",
|
|
1990
|
+
"tokio-native-tls",
|
|
1991
|
+
"tower-service",
|
|
1992
|
+
"url",
|
|
1993
|
+
"wasm-bindgen",
|
|
1994
|
+
"wasm-bindgen-futures",
|
|
1995
|
+
"web-sys",
|
|
1996
|
+
"winreg",
|
|
1997
|
+
]
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "rio_api"
|
|
2001
|
+
version = "0.8.4"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "1924fa1f0e6d851f9b73b3c569e607c368a0d92995d99d563ad7bf1414696603"
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "rio_turtle"
|
|
2007
|
+
version = "0.8.4"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "5cec59971eafd99b9c7e3544bfcabafea81a7072ac51c9f46985ca0bd7ba6016"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"oxilangtag",
|
|
2012
|
+
"oxiri",
|
|
2013
|
+
"rio_api",
|
|
2014
|
+
]
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "rio_xml"
|
|
2018
|
+
version = "0.8.4"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "d2edda57b877119dc326c612ba822e3ca1ee22bfc86781a4e9dc0884756b58c3"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"oxilangtag",
|
|
2023
|
+
"oxiri",
|
|
2024
|
+
"quick-xml",
|
|
2025
|
+
"rio_api",
|
|
2026
|
+
]
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "rustc-demangle"
|
|
2030
|
+
version = "0.1.23"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "rustc-hash"
|
|
2036
|
+
version = "1.1.0"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "rustix"
|
|
2042
|
+
version = "0.38.32"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"bitflags 2.5.0",
|
|
2047
|
+
"errno",
|
|
2048
|
+
"libc",
|
|
2049
|
+
"linux-raw-sys",
|
|
2050
|
+
"windows-sys 0.52.0",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "rustls-pemfile"
|
|
2055
|
+
version = "1.0.4"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"base64",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "ryu"
|
|
2064
|
+
version = "1.0.17"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
|
2067
|
+
|
|
2068
|
+
[[package]]
|
|
2069
|
+
name = "ryu-js"
|
|
2070
|
+
version = "0.2.2"
|
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
+
checksum = "6518fc26bced4d53678a22d6e423e9d8716377def84545fe328236e3af070e7f"
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "ryu_floating_decimal"
|
|
2076
|
+
version = "0.1.0"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "700de91d5fd6091442d00fdd9ee790af6d4f0f480562b0f5a1e8f59e90aafe73"
|
|
2079
|
+
|
|
2080
|
+
[[package]]
|
|
2081
|
+
name = "same-file"
|
|
2082
|
+
version = "1.0.6"
|
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2085
|
+
dependencies = [
|
|
2086
|
+
"winapi-util",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "schannel"
|
|
2091
|
+
version = "0.1.23"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
2094
|
+
dependencies = [
|
|
2095
|
+
"windows-sys 0.52.0",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "scopeguard"
|
|
2100
|
+
version = "1.2.0"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2103
|
+
|
|
2104
|
+
[[package]]
|
|
2105
|
+
name = "security-framework"
|
|
2106
|
+
version = "2.10.0"
|
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
+
checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6"
|
|
2109
|
+
dependencies = [
|
|
2110
|
+
"bitflags 1.3.2",
|
|
2111
|
+
"core-foundation",
|
|
2112
|
+
"core-foundation-sys",
|
|
2113
|
+
"libc",
|
|
2114
|
+
"security-framework-sys",
|
|
2115
|
+
]
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "security-framework-sys"
|
|
2119
|
+
version = "2.10.0"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef"
|
|
2122
|
+
dependencies = [
|
|
2123
|
+
"core-foundation-sys",
|
|
2124
|
+
"libc",
|
|
2125
|
+
]
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "serde"
|
|
2129
|
+
version = "1.0.197"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
|
|
2132
|
+
dependencies = [
|
|
2133
|
+
"serde_derive",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "serde_derive"
|
|
2138
|
+
version = "1.0.197"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"proc-macro2",
|
|
2143
|
+
"quote",
|
|
2144
|
+
"syn 2.0.58",
|
|
2145
|
+
]
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "serde_json"
|
|
2149
|
+
version = "1.0.115"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd"
|
|
2152
|
+
dependencies = [
|
|
2153
|
+
"itoa",
|
|
2154
|
+
"ryu",
|
|
2155
|
+
"serde",
|
|
2156
|
+
]
|
|
2157
|
+
|
|
2158
|
+
[[package]]
|
|
2159
|
+
name = "serde_regex"
|
|
2160
|
+
version = "1.1.0"
|
|
2161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
+
checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf"
|
|
2163
|
+
dependencies = [
|
|
2164
|
+
"regex",
|
|
2165
|
+
"serde",
|
|
2166
|
+
]
|
|
2167
|
+
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "serde_urlencoded"
|
|
2170
|
+
version = "0.7.1"
|
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2173
|
+
dependencies = [
|
|
2174
|
+
"form_urlencoded",
|
|
2175
|
+
"itoa",
|
|
2176
|
+
"ryu",
|
|
2177
|
+
"serde",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "serde_with"
|
|
2182
|
+
version = "3.7.0"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"base64",
|
|
2187
|
+
"chrono",
|
|
2188
|
+
"hex",
|
|
2189
|
+
"indexmap 1.9.3",
|
|
2190
|
+
"indexmap 2.2.6",
|
|
2191
|
+
"serde",
|
|
2192
|
+
"serde_derive",
|
|
2193
|
+
"serde_json",
|
|
2194
|
+
"serde_with_macros",
|
|
2195
|
+
"time",
|
|
2196
|
+
]
|
|
2197
|
+
|
|
2198
|
+
[[package]]
|
|
2199
|
+
name = "serde_with_macros"
|
|
2200
|
+
version = "3.7.0"
|
|
2201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
+
checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
|
|
2203
|
+
dependencies = [
|
|
2204
|
+
"darling 0.20.8",
|
|
2205
|
+
"proc-macro2",
|
|
2206
|
+
"quote",
|
|
2207
|
+
"syn 2.0.58",
|
|
2208
|
+
]
|
|
2209
|
+
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "sha-1"
|
|
2212
|
+
version = "0.10.1"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
|
|
2215
|
+
dependencies = [
|
|
2216
|
+
"cfg-if",
|
|
2217
|
+
"cpufeatures",
|
|
2218
|
+
"digest",
|
|
2219
|
+
]
|
|
2220
|
+
|
|
2221
|
+
[[package]]
|
|
2222
|
+
name = "sha2"
|
|
2223
|
+
version = "0.10.8"
|
|
2224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2225
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
|
2226
|
+
dependencies = [
|
|
2227
|
+
"cfg-if",
|
|
2228
|
+
"cpufeatures",
|
|
2229
|
+
"digest",
|
|
2230
|
+
]
|
|
2231
|
+
|
|
2232
|
+
[[package]]
|
|
2233
|
+
name = "shlex"
|
|
2234
|
+
version = "1.3.0"
|
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2237
|
+
|
|
2238
|
+
[[package]]
|
|
2239
|
+
name = "siphasher"
|
|
2240
|
+
version = "1.0.1"
|
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "slab"
|
|
2246
|
+
version = "0.4.9"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"autocfg",
|
|
2251
|
+
]
|
|
2252
|
+
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "smallstr"
|
|
2255
|
+
version = "0.3.0"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "63b1aefdf380735ff8ded0b15f31aab05daf1f70216c01c02a12926badd1df9d"
|
|
2258
|
+
dependencies = [
|
|
2259
|
+
"smallvec",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "smallvec"
|
|
2264
|
+
version = "1.13.2"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "socket2"
|
|
2270
|
+
version = "0.5.6"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"libc",
|
|
2275
|
+
"windows-sys 0.52.0",
|
|
2276
|
+
]
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "sparesults"
|
|
2280
|
+
version = "0.1.8"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "c301a876e05c887d2f23f47f7822719435d36038856a9681cc7351d9c2677ce4"
|
|
2283
|
+
dependencies = [
|
|
2284
|
+
"json-event-parser",
|
|
2285
|
+
"oxrdf",
|
|
2286
|
+
"quick-xml",
|
|
2287
|
+
]
|
|
2288
|
+
|
|
2289
|
+
[[package]]
|
|
2290
|
+
name = "spargebra"
|
|
2291
|
+
version = "0.2.8"
|
|
2292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
+
checksum = "9fb45c36a61e7c8c0c949db8ee6aac1efda0511289ce9146ba28ba27b4760204"
|
|
2294
|
+
dependencies = [
|
|
2295
|
+
"oxilangtag",
|
|
2296
|
+
"oxiri",
|
|
2297
|
+
"oxrdf",
|
|
2298
|
+
"peg",
|
|
2299
|
+
"rand 0.8.5",
|
|
2300
|
+
]
|
|
2301
|
+
|
|
2302
|
+
[[package]]
|
|
2303
|
+
name = "static-iref"
|
|
2304
|
+
version = "2.0.0"
|
|
2305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2306
|
+
checksum = "d9786d4b8e9e5423fe85c57a826d7e0f0774746149a2ccd21e2104ff74b71ce7"
|
|
2307
|
+
dependencies = [
|
|
2308
|
+
"iref",
|
|
2309
|
+
]
|
|
2310
|
+
|
|
2311
|
+
[[package]]
|
|
2312
|
+
name = "static_assertions"
|
|
2313
|
+
version = "1.1.0"
|
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2316
|
+
|
|
2317
|
+
[[package]]
|
|
2318
|
+
name = "strsim"
|
|
2319
|
+
version = "0.10.0"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "strsim"
|
|
2325
|
+
version = "0.11.1"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "syn"
|
|
2331
|
+
version = "1.0.109"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"proc-macro2",
|
|
2336
|
+
"quote",
|
|
2337
|
+
"unicode-ident",
|
|
2338
|
+
]
|
|
2339
|
+
|
|
2340
|
+
[[package]]
|
|
2341
|
+
name = "syn"
|
|
2342
|
+
version = "2.0.58"
|
|
2343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
|
+
checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687"
|
|
2345
|
+
dependencies = [
|
|
2346
|
+
"proc-macro2",
|
|
2347
|
+
"quote",
|
|
2348
|
+
"unicode-ident",
|
|
2349
|
+
]
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "sync_wrapper"
|
|
2353
|
+
version = "0.1.2"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
|
|
2356
|
+
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "system-configuration"
|
|
2359
|
+
version = "0.5.1"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
2362
|
+
dependencies = [
|
|
2363
|
+
"bitflags 1.3.2",
|
|
2364
|
+
"core-foundation",
|
|
2365
|
+
"system-configuration-sys",
|
|
2366
|
+
]
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "system-configuration-sys"
|
|
2370
|
+
version = "0.5.0"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
2373
|
+
dependencies = [
|
|
2374
|
+
"core-foundation-sys",
|
|
2375
|
+
"libc",
|
|
2376
|
+
]
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "target-lexicon"
|
|
2380
|
+
version = "0.12.14"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
2383
|
+
|
|
2384
|
+
[[package]]
|
|
2385
|
+
name = "tempdir"
|
|
2386
|
+
version = "0.3.7"
|
|
2387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
+
checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
|
|
2389
|
+
dependencies = [
|
|
2390
|
+
"rand 0.4.6",
|
|
2391
|
+
"remove_dir_all",
|
|
2392
|
+
]
|
|
2393
|
+
|
|
2394
|
+
[[package]]
|
|
2395
|
+
name = "tempfile"
|
|
2396
|
+
version = "3.10.1"
|
|
2397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
|
2399
|
+
dependencies = [
|
|
2400
|
+
"cfg-if",
|
|
2401
|
+
"fastrand",
|
|
2402
|
+
"rustix",
|
|
2403
|
+
"windows-sys 0.52.0",
|
|
2404
|
+
]
|
|
2405
|
+
|
|
2406
|
+
[[package]]
|
|
2407
|
+
name = "thiserror"
|
|
2408
|
+
version = "1.0.58"
|
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2410
|
+
checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
|
|
2411
|
+
dependencies = [
|
|
2412
|
+
"thiserror-impl",
|
|
2413
|
+
]
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "thiserror-impl"
|
|
2417
|
+
version = "1.0.58"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"proc-macro2",
|
|
2422
|
+
"quote",
|
|
2423
|
+
"syn 2.0.58",
|
|
2424
|
+
]
|
|
2425
|
+
|
|
2426
|
+
[[package]]
|
|
2427
|
+
name = "time"
|
|
2428
|
+
version = "0.3.35"
|
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
+
checksum = "ef89ece63debf11bc32d1ed8d078ac870cbeb44da02afb02a9ff135ae7ca0582"
|
|
2431
|
+
dependencies = [
|
|
2432
|
+
"deranged",
|
|
2433
|
+
"itoa",
|
|
2434
|
+
"num-conv",
|
|
2435
|
+
"powerfmt",
|
|
2436
|
+
"serde",
|
|
2437
|
+
"time-core",
|
|
2438
|
+
"time-macros",
|
|
2439
|
+
]
|
|
2440
|
+
|
|
2441
|
+
[[package]]
|
|
2442
|
+
name = "time-core"
|
|
2443
|
+
version = "0.1.2"
|
|
2444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "time-macros"
|
|
2449
|
+
version = "0.2.18"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
2452
|
+
dependencies = [
|
|
2453
|
+
"num-conv",
|
|
2454
|
+
"time-core",
|
|
2455
|
+
]
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "tinyvec"
|
|
2459
|
+
version = "1.6.0"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"tinyvec_macros",
|
|
2464
|
+
]
|
|
2465
|
+
|
|
2466
|
+
[[package]]
|
|
2467
|
+
name = "tinyvec_macros"
|
|
2468
|
+
version = "0.1.1"
|
|
2469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "tokio"
|
|
2474
|
+
version = "1.37.0"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"backtrace",
|
|
2479
|
+
"bytes",
|
|
2480
|
+
"libc",
|
|
2481
|
+
"mio",
|
|
2482
|
+
"pin-project-lite",
|
|
2483
|
+
"socket2",
|
|
2484
|
+
"windows-sys 0.48.0",
|
|
2485
|
+
]
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "tokio-native-tls"
|
|
2489
|
+
version = "0.3.1"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
|
2492
|
+
dependencies = [
|
|
2493
|
+
"native-tls",
|
|
2494
|
+
"tokio",
|
|
2495
|
+
]
|
|
2496
|
+
|
|
2497
|
+
[[package]]
|
|
2498
|
+
name = "tokio-util"
|
|
2499
|
+
version = "0.7.10"
|
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2501
|
+
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
|
2502
|
+
dependencies = [
|
|
2503
|
+
"bytes",
|
|
2504
|
+
"futures-core",
|
|
2505
|
+
"futures-sink",
|
|
2506
|
+
"pin-project-lite",
|
|
2507
|
+
"tokio",
|
|
2508
|
+
"tracing",
|
|
2509
|
+
]
|
|
2510
|
+
|
|
2511
|
+
[[package]]
|
|
2512
|
+
name = "tower-service"
|
|
2513
|
+
version = "0.3.2"
|
|
2514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2515
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|
2516
|
+
|
|
2517
|
+
[[package]]
|
|
2518
|
+
name = "tracing"
|
|
2519
|
+
version = "0.1.40"
|
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
2522
|
+
dependencies = [
|
|
2523
|
+
"pin-project-lite",
|
|
2524
|
+
"tracing-core",
|
|
2525
|
+
]
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "tracing-core"
|
|
2529
|
+
version = "0.1.32"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"once_cell",
|
|
2534
|
+
]
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "try-lock"
|
|
2538
|
+
version = "0.2.5"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2541
|
+
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "typenum"
|
|
2544
|
+
version = "1.17.0"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "unicode-bidi"
|
|
2550
|
+
version = "0.3.15"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "unicode-ident"
|
|
2556
|
+
version = "1.0.12"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
2559
|
+
|
|
2560
|
+
[[package]]
|
|
2561
|
+
name = "unicode-normalization"
|
|
2562
|
+
version = "0.1.23"
|
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
|
2565
|
+
dependencies = [
|
|
2566
|
+
"tinyvec",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "unindent"
|
|
2571
|
+
version = "0.2.3"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "url"
|
|
2577
|
+
version = "2.5.0"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
|
2580
|
+
dependencies = [
|
|
2581
|
+
"form_urlencoded",
|
|
2582
|
+
"idna",
|
|
2583
|
+
"percent-encoding",
|
|
2584
|
+
]
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "utf8-decode"
|
|
2588
|
+
version = "1.0.1"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "ca61eb27fa339aa08826a29f03e87b99b4d8f0fc2255306fd266bb1b6a9de498"
|
|
2591
|
+
|
|
2592
|
+
[[package]]
|
|
2593
|
+
name = "utf8parse"
|
|
2594
|
+
version = "0.2.1"
|
|
2595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2596
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
2597
|
+
|
|
2598
|
+
[[package]]
|
|
2599
|
+
name = "vcpkg"
|
|
2600
|
+
version = "0.2.15"
|
|
2601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2603
|
+
|
|
2604
|
+
[[package]]
|
|
2605
|
+
name = "version_check"
|
|
2606
|
+
version = "0.9.4"
|
|
2607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2608
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "walkdir"
|
|
2612
|
+
version = "2.5.0"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2615
|
+
dependencies = [
|
|
2616
|
+
"same-file",
|
|
2617
|
+
"winapi-util",
|
|
2618
|
+
]
|
|
2619
|
+
|
|
2620
|
+
[[package]]
|
|
2621
|
+
name = "want"
|
|
2622
|
+
version = "0.3.1"
|
|
2623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2624
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2625
|
+
dependencies = [
|
|
2626
|
+
"try-lock",
|
|
2627
|
+
]
|
|
2628
|
+
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "wasi"
|
|
2631
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2634
|
+
|
|
2635
|
+
[[package]]
|
|
2636
|
+
name = "wasm-bindgen"
|
|
2637
|
+
version = "0.2.92"
|
|
2638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
|
2640
|
+
dependencies = [
|
|
2641
|
+
"cfg-if",
|
|
2642
|
+
"wasm-bindgen-macro",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
2645
|
+
[[package]]
|
|
2646
|
+
name = "wasm-bindgen-backend"
|
|
2647
|
+
version = "0.2.92"
|
|
2648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
2650
|
+
dependencies = [
|
|
2651
|
+
"bumpalo",
|
|
2652
|
+
"log",
|
|
2653
|
+
"once_cell",
|
|
2654
|
+
"proc-macro2",
|
|
2655
|
+
"quote",
|
|
2656
|
+
"syn 2.0.58",
|
|
2657
|
+
"wasm-bindgen-shared",
|
|
2658
|
+
]
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "wasm-bindgen-futures"
|
|
2662
|
+
version = "0.4.42"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
|
2665
|
+
dependencies = [
|
|
2666
|
+
"cfg-if",
|
|
2667
|
+
"js-sys",
|
|
2668
|
+
"wasm-bindgen",
|
|
2669
|
+
"web-sys",
|
|
2670
|
+
]
|
|
2671
|
+
|
|
2672
|
+
[[package]]
|
|
2673
|
+
name = "wasm-bindgen-macro"
|
|
2674
|
+
version = "0.2.92"
|
|
2675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2676
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
|
2677
|
+
dependencies = [
|
|
2678
|
+
"quote",
|
|
2679
|
+
"wasm-bindgen-macro-support",
|
|
2680
|
+
]
|
|
2681
|
+
|
|
2682
|
+
[[package]]
|
|
2683
|
+
name = "wasm-bindgen-macro-support"
|
|
2684
|
+
version = "0.2.92"
|
|
2685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2686
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
2687
|
+
dependencies = [
|
|
2688
|
+
"proc-macro2",
|
|
2689
|
+
"quote",
|
|
2690
|
+
"syn 2.0.58",
|
|
2691
|
+
"wasm-bindgen-backend",
|
|
2692
|
+
"wasm-bindgen-shared",
|
|
2693
|
+
]
|
|
2694
|
+
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "wasm-bindgen-shared"
|
|
2697
|
+
version = "0.2.92"
|
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
|
2700
|
+
|
|
2701
|
+
[[package]]
|
|
2702
|
+
name = "web-sys"
|
|
2703
|
+
version = "0.3.69"
|
|
2704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
|
2706
|
+
dependencies = [
|
|
2707
|
+
"js-sys",
|
|
2708
|
+
"wasm-bindgen",
|
|
2709
|
+
]
|
|
2710
|
+
|
|
2711
|
+
[[package]]
|
|
2712
|
+
name = "which"
|
|
2713
|
+
version = "4.4.2"
|
|
2714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
|
2716
|
+
dependencies = [
|
|
2717
|
+
"either",
|
|
2718
|
+
"home",
|
|
2719
|
+
"once_cell",
|
|
2720
|
+
"rustix",
|
|
2721
|
+
]
|
|
2722
|
+
|
|
2723
|
+
[[package]]
|
|
2724
|
+
name = "winapi"
|
|
2725
|
+
version = "0.3.9"
|
|
2726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2727
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2728
|
+
dependencies = [
|
|
2729
|
+
"winapi-i686-pc-windows-gnu",
|
|
2730
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2731
|
+
]
|
|
2732
|
+
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2735
|
+
version = "0.4.0"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "winapi-util"
|
|
2741
|
+
version = "0.1.6"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
|
|
2744
|
+
dependencies = [
|
|
2745
|
+
"winapi",
|
|
2746
|
+
]
|
|
2747
|
+
|
|
2748
|
+
[[package]]
|
|
2749
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2750
|
+
version = "0.4.0"
|
|
2751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2752
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2753
|
+
|
|
2754
|
+
[[package]]
|
|
2755
|
+
name = "windows-core"
|
|
2756
|
+
version = "0.52.0"
|
|
2757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
2759
|
+
dependencies = [
|
|
2760
|
+
"windows-targets 0.52.4",
|
|
2761
|
+
]
|
|
2762
|
+
|
|
2763
|
+
[[package]]
|
|
2764
|
+
name = "windows-sys"
|
|
2765
|
+
version = "0.48.0"
|
|
2766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2767
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2768
|
+
dependencies = [
|
|
2769
|
+
"windows-targets 0.48.5",
|
|
2770
|
+
]
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "windows-sys"
|
|
2774
|
+
version = "0.52.0"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2777
|
+
dependencies = [
|
|
2778
|
+
"windows-targets 0.52.4",
|
|
2779
|
+
]
|
|
2780
|
+
|
|
2781
|
+
[[package]]
|
|
2782
|
+
name = "windows-targets"
|
|
2783
|
+
version = "0.48.5"
|
|
2784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2786
|
+
dependencies = [
|
|
2787
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
2788
|
+
"windows_aarch64_msvc 0.48.5",
|
|
2789
|
+
"windows_i686_gnu 0.48.5",
|
|
2790
|
+
"windows_i686_msvc 0.48.5",
|
|
2791
|
+
"windows_x86_64_gnu 0.48.5",
|
|
2792
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
2793
|
+
"windows_x86_64_msvc 0.48.5",
|
|
2794
|
+
]
|
|
2795
|
+
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "windows-targets"
|
|
2798
|
+
version = "0.52.4"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
|
|
2801
|
+
dependencies = [
|
|
2802
|
+
"windows_aarch64_gnullvm 0.52.4",
|
|
2803
|
+
"windows_aarch64_msvc 0.52.4",
|
|
2804
|
+
"windows_i686_gnu 0.52.4",
|
|
2805
|
+
"windows_i686_msvc 0.52.4",
|
|
2806
|
+
"windows_x86_64_gnu 0.52.4",
|
|
2807
|
+
"windows_x86_64_gnullvm 0.52.4",
|
|
2808
|
+
"windows_x86_64_msvc 0.52.4",
|
|
2809
|
+
]
|
|
2810
|
+
|
|
2811
|
+
[[package]]
|
|
2812
|
+
name = "windows_aarch64_gnullvm"
|
|
2813
|
+
version = "0.48.5"
|
|
2814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2816
|
+
|
|
2817
|
+
[[package]]
|
|
2818
|
+
name = "windows_aarch64_gnullvm"
|
|
2819
|
+
version = "0.52.4"
|
|
2820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
+
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
|
|
2822
|
+
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "windows_aarch64_msvc"
|
|
2825
|
+
version = "0.48.5"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2828
|
+
|
|
2829
|
+
[[package]]
|
|
2830
|
+
name = "windows_aarch64_msvc"
|
|
2831
|
+
version = "0.52.4"
|
|
2832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
+
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
|
|
2834
|
+
|
|
2835
|
+
[[package]]
|
|
2836
|
+
name = "windows_i686_gnu"
|
|
2837
|
+
version = "0.48.5"
|
|
2838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2839
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2840
|
+
|
|
2841
|
+
[[package]]
|
|
2842
|
+
name = "windows_i686_gnu"
|
|
2843
|
+
version = "0.52.4"
|
|
2844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
+
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
|
|
2846
|
+
|
|
2847
|
+
[[package]]
|
|
2848
|
+
name = "windows_i686_msvc"
|
|
2849
|
+
version = "0.48.5"
|
|
2850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2851
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2852
|
+
|
|
2853
|
+
[[package]]
|
|
2854
|
+
name = "windows_i686_msvc"
|
|
2855
|
+
version = "0.52.4"
|
|
2856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2857
|
+
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
|
|
2858
|
+
|
|
2859
|
+
[[package]]
|
|
2860
|
+
name = "windows_x86_64_gnu"
|
|
2861
|
+
version = "0.48.5"
|
|
2862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2863
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2864
|
+
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "windows_x86_64_gnu"
|
|
2867
|
+
version = "0.52.4"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
|
|
2870
|
+
|
|
2871
|
+
[[package]]
|
|
2872
|
+
name = "windows_x86_64_gnullvm"
|
|
2873
|
+
version = "0.48.5"
|
|
2874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2876
|
+
|
|
2877
|
+
[[package]]
|
|
2878
|
+
name = "windows_x86_64_gnullvm"
|
|
2879
|
+
version = "0.52.4"
|
|
2880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
+
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
|
|
2882
|
+
|
|
2883
|
+
[[package]]
|
|
2884
|
+
name = "windows_x86_64_msvc"
|
|
2885
|
+
version = "0.48.5"
|
|
2886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2888
|
+
|
|
2889
|
+
[[package]]
|
|
2890
|
+
name = "windows_x86_64_msvc"
|
|
2891
|
+
version = "0.52.4"
|
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
+
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "winreg"
|
|
2897
|
+
version = "0.50.0"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
2900
|
+
dependencies = [
|
|
2901
|
+
"cfg-if",
|
|
2902
|
+
"windows-sys 0.48.0",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "zerocopy"
|
|
2907
|
+
version = "0.7.32"
|
|
2908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
+
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
|
|
2910
|
+
dependencies = [
|
|
2911
|
+
"zerocopy-derive",
|
|
2912
|
+
]
|
|
2913
|
+
|
|
2914
|
+
[[package]]
|
|
2915
|
+
name = "zerocopy-derive"
|
|
2916
|
+
version = "0.7.32"
|
|
2917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2918
|
+
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
2919
|
+
dependencies = [
|
|
2920
|
+
"proc-macro2",
|
|
2921
|
+
"quote",
|
|
2922
|
+
"syn 2.0.58",
|
|
2923
|
+
]
|