yerba 0.4.2-x86_64-linux-gnu → 0.5.0-x86_64-linux-gnu
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.
- checksums.yaml +4 -4
- data/README.md +241 -53
- data/exe/x86_64-linux-gnu/yerba +0 -0
- data/ext/yerba/include/yerba.h +13 -1
- data/ext/yerba/yerba.c +239 -113
- data/lib/yerba/3.2/yerba.so +0 -0
- data/lib/yerba/3.3/yerba.so +0 -0
- data/lib/yerba/3.4/yerba.so +0 -0
- data/lib/yerba/4.0/yerba.so +0 -0
- data/lib/yerba/document.rb +54 -18
- data/lib/yerba/map.rb +55 -43
- data/lib/yerba/node.rb +58 -0
- data/lib/yerba/scalar.rb +20 -23
- data/lib/yerba/sequence.rb +88 -55
- data/lib/yerba/version.rb +1 -1
- data/lib/yerba.rb +2 -0
- data/rust/Cargo.lock +1110 -25
- data/rust/Cargo.toml +2 -1
- data/rust/src/commands/delete.rs +1 -1
- data/rust/src/commands/get.rs +47 -12
- data/rust/src/commands/insert.rs +1 -1
- data/rust/src/commands/location.rs +56 -0
- data/rust/src/commands/mod.rs +33 -5
- data/rust/src/commands/remove.rs +1 -1
- data/rust/src/commands/rename.rs +1 -1
- data/rust/src/commands/schema.rs +84 -0
- data/rust/src/commands/set.rs +1 -1
- data/rust/src/commands/unique.rs +80 -0
- data/rust/src/document/condition.rs +17 -1
- data/rust/src/document/get.rs +254 -23
- data/rust/src/document/mod.rs +90 -12
- data/rust/src/document/schema.rs +73 -0
- data/rust/src/document/set.rs +1 -1
- data/rust/src/document/sort.rs +19 -13
- data/rust/src/document/style.rs +3 -3
- data/rust/src/document/unique.rs +86 -0
- data/rust/src/error.rs +78 -0
- data/rust/src/ffi.rs +89 -9
- data/rust/src/lib.rs +5 -10
- data/rust/src/main.rs +2 -0
- data/rust/src/schema.rs +93 -0
- data/rust/src/syntax.rs +91 -31
- data/rust/src/yerbafile.rs +107 -18
- metadata +9 -2
data/rust/Cargo.lock
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"getrandom 0.3.4",
|
|
13
|
+
"once_cell",
|
|
14
|
+
"serde",
|
|
15
|
+
"version_check",
|
|
16
|
+
"zerocopy",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[[package]]
|
|
20
|
+
name = "aho-corasick"
|
|
21
|
+
version = "1.1.4"
|
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"memchr",
|
|
26
|
+
]
|
|
27
|
+
|
|
5
28
|
[[package]]
|
|
6
29
|
name = "anstream"
|
|
7
30
|
version = "1.0.0"
|
|
@@ -58,12 +81,69 @@ version = "1.0.102"
|
|
|
58
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
82
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
60
83
|
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "atomic-waker"
|
|
86
|
+
version = "1.1.2"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "autocfg"
|
|
92
|
+
version = "1.5.0"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "base64"
|
|
98
|
+
version = "0.22.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "bit-set"
|
|
104
|
+
version = "0.8.0"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"bit-vec",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bit-vec"
|
|
113
|
+
version = "0.8.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
116
|
+
|
|
61
117
|
[[package]]
|
|
62
118
|
name = "bitflags"
|
|
63
119
|
version = "2.11.1"
|
|
64
120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
121
|
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
66
122
|
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "borrow-or-share"
|
|
125
|
+
version = "0.2.4"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "bumpalo"
|
|
131
|
+
version = "3.20.2"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "bytecount"
|
|
137
|
+
version = "0.6.9"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "bytes"
|
|
143
|
+
version = "1.11.1"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
146
|
+
|
|
67
147
|
[[package]]
|
|
68
148
|
name = "cbindgen"
|
|
69
149
|
version = "0.28.0"
|
|
@@ -166,12 +246,32 @@ version = "0.8.21"
|
|
|
166
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
247
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
168
248
|
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "displaydoc"
|
|
251
|
+
version = "0.2.5"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"proc-macro2",
|
|
256
|
+
"quote",
|
|
257
|
+
"syn",
|
|
258
|
+
]
|
|
259
|
+
|
|
169
260
|
[[package]]
|
|
170
261
|
name = "either"
|
|
171
262
|
version = "1.15.0"
|
|
172
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
264
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
174
265
|
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "email_address"
|
|
268
|
+
version = "0.2.9"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"serde",
|
|
273
|
+
]
|
|
274
|
+
|
|
175
275
|
[[package]]
|
|
176
276
|
name = "equivalent"
|
|
177
277
|
version = "1.0.2"
|
|
@@ -188,18 +288,120 @@ dependencies = [
|
|
|
188
288
|
"windows-sys",
|
|
189
289
|
]
|
|
190
290
|
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "fancy-regex"
|
|
293
|
+
version = "0.14.0"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"bit-set",
|
|
298
|
+
"regex-automata",
|
|
299
|
+
"regex-syntax",
|
|
300
|
+
]
|
|
301
|
+
|
|
191
302
|
[[package]]
|
|
192
303
|
name = "fastrand"
|
|
193
304
|
version = "2.4.1"
|
|
194
305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
306
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
196
307
|
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "fluent-uri"
|
|
310
|
+
version = "0.3.2"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"borrow-or-share",
|
|
315
|
+
"ref-cast",
|
|
316
|
+
"serde",
|
|
317
|
+
]
|
|
318
|
+
|
|
197
319
|
[[package]]
|
|
198
320
|
name = "foldhash"
|
|
199
321
|
version = "0.1.5"
|
|
200
322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
323
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
202
324
|
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "form_urlencoded"
|
|
327
|
+
version = "1.2.2"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"percent-encoding",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "fraction"
|
|
336
|
+
version = "0.15.4"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "e076045bb43dac435333ed5f04caf35c7463631d0dae2deb2638d94dd0a5b872"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"lazy_static",
|
|
341
|
+
"num",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "futures-channel"
|
|
346
|
+
version = "0.3.32"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"futures-core",
|
|
351
|
+
"futures-sink",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "futures-core"
|
|
356
|
+
version = "0.3.32"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "futures-io"
|
|
362
|
+
version = "0.3.32"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "futures-sink"
|
|
368
|
+
version = "0.3.32"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "futures-task"
|
|
374
|
+
version = "0.3.32"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "futures-util"
|
|
380
|
+
version = "0.3.32"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"futures-core",
|
|
385
|
+
"futures-io",
|
|
386
|
+
"futures-sink",
|
|
387
|
+
"futures-task",
|
|
388
|
+
"memchr",
|
|
389
|
+
"pin-project-lite",
|
|
390
|
+
"slab",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "getrandom"
|
|
395
|
+
version = "0.3.4"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"cfg-if",
|
|
400
|
+
"libc",
|
|
401
|
+
"r-efi 5.3.0",
|
|
402
|
+
"wasip2",
|
|
403
|
+
]
|
|
404
|
+
|
|
203
405
|
[[package]]
|
|
204
406
|
name = "getrandom"
|
|
205
407
|
version = "0.4.2"
|
|
@@ -208,7 +410,7 @@ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
|
208
410
|
dependencies = [
|
|
209
411
|
"cfg-if",
|
|
210
412
|
"libc",
|
|
211
|
-
"r-efi",
|
|
413
|
+
"r-efi 6.0.0",
|
|
212
414
|
"wasip2",
|
|
213
415
|
"wasip3",
|
|
214
416
|
]
|
|
@@ -252,12 +454,197 @@ version = "0.5.0"
|
|
|
252
454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
455
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
254
456
|
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "http"
|
|
459
|
+
version = "1.4.0"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"bytes",
|
|
464
|
+
"itoa",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "http-body"
|
|
469
|
+
version = "1.0.1"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"bytes",
|
|
474
|
+
"http",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "http-body-util"
|
|
479
|
+
version = "0.1.3"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"bytes",
|
|
484
|
+
"futures-core",
|
|
485
|
+
"http",
|
|
486
|
+
"http-body",
|
|
487
|
+
"pin-project-lite",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "httparse"
|
|
492
|
+
version = "1.10.1"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "hyper"
|
|
498
|
+
version = "1.9.0"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"atomic-waker",
|
|
503
|
+
"bytes",
|
|
504
|
+
"futures-channel",
|
|
505
|
+
"futures-core",
|
|
506
|
+
"http",
|
|
507
|
+
"http-body",
|
|
508
|
+
"httparse",
|
|
509
|
+
"itoa",
|
|
510
|
+
"pin-project-lite",
|
|
511
|
+
"smallvec",
|
|
512
|
+
"tokio",
|
|
513
|
+
"want",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "hyper-util"
|
|
518
|
+
version = "0.1.20"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"base64",
|
|
523
|
+
"bytes",
|
|
524
|
+
"futures-channel",
|
|
525
|
+
"futures-util",
|
|
526
|
+
"http",
|
|
527
|
+
"http-body",
|
|
528
|
+
"hyper",
|
|
529
|
+
"ipnet",
|
|
530
|
+
"libc",
|
|
531
|
+
"percent-encoding",
|
|
532
|
+
"pin-project-lite",
|
|
533
|
+
"socket2",
|
|
534
|
+
"tokio",
|
|
535
|
+
"tower-service",
|
|
536
|
+
"tracing",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "icu_collections"
|
|
541
|
+
version = "2.2.0"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"displaydoc",
|
|
546
|
+
"potential_utf",
|
|
547
|
+
"utf8_iter",
|
|
548
|
+
"yoke",
|
|
549
|
+
"zerofrom",
|
|
550
|
+
"zerovec",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "icu_locale_core"
|
|
555
|
+
version = "2.2.0"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"displaydoc",
|
|
560
|
+
"litemap",
|
|
561
|
+
"tinystr",
|
|
562
|
+
"writeable",
|
|
563
|
+
"zerovec",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "icu_normalizer"
|
|
568
|
+
version = "2.2.0"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"icu_collections",
|
|
573
|
+
"icu_normalizer_data",
|
|
574
|
+
"icu_properties",
|
|
575
|
+
"icu_provider",
|
|
576
|
+
"smallvec",
|
|
577
|
+
"zerovec",
|
|
578
|
+
]
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "icu_normalizer_data"
|
|
582
|
+
version = "2.2.0"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "icu_properties"
|
|
588
|
+
version = "2.2.0"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"icu_collections",
|
|
593
|
+
"icu_locale_core",
|
|
594
|
+
"icu_properties_data",
|
|
595
|
+
"icu_provider",
|
|
596
|
+
"zerotrie",
|
|
597
|
+
"zerovec",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "icu_properties_data"
|
|
602
|
+
version = "2.2.0"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "icu_provider"
|
|
608
|
+
version = "2.2.0"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"displaydoc",
|
|
613
|
+
"icu_locale_core",
|
|
614
|
+
"writeable",
|
|
615
|
+
"yoke",
|
|
616
|
+
"zerofrom",
|
|
617
|
+
"zerotrie",
|
|
618
|
+
"zerovec",
|
|
619
|
+
]
|
|
620
|
+
|
|
255
621
|
[[package]]
|
|
256
622
|
name = "id-arena"
|
|
257
623
|
version = "2.3.0"
|
|
258
624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
625
|
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
260
626
|
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "idna"
|
|
629
|
+
version = "1.1.0"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"idna_adapter",
|
|
634
|
+
"smallvec",
|
|
635
|
+
"utf8_iter",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "idna_adapter"
|
|
640
|
+
version = "1.2.2"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"icu_normalizer",
|
|
645
|
+
"icu_properties",
|
|
646
|
+
]
|
|
647
|
+
|
|
261
648
|
[[package]]
|
|
262
649
|
name = "indexmap"
|
|
263
650
|
version = "2.14.0"
|
|
@@ -279,6 +666,12 @@ dependencies = [
|
|
|
279
666
|
"rustversion",
|
|
280
667
|
]
|
|
281
668
|
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "ipnet"
|
|
671
|
+
version = "2.12.0"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
674
|
+
|
|
282
675
|
[[package]]
|
|
283
676
|
name = "is_terminal_polyfill"
|
|
284
677
|
version = "1.70.2"
|
|
@@ -291,6 +684,49 @@ version = "1.0.18"
|
|
|
291
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
685
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
293
686
|
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "js-sys"
|
|
689
|
+
version = "0.3.98"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"cfg-if",
|
|
694
|
+
"futures-util",
|
|
695
|
+
"once_cell",
|
|
696
|
+
"wasm-bindgen",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "jsonschema"
|
|
701
|
+
version = "0.29.1"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "161c33c3ec738cfea3288c5c53dfcdb32fd4fc2954de86ea06f71b5a1a40bfcd"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"ahash",
|
|
706
|
+
"base64",
|
|
707
|
+
"bytecount",
|
|
708
|
+
"email_address",
|
|
709
|
+
"fancy-regex",
|
|
710
|
+
"fraction",
|
|
711
|
+
"idna",
|
|
712
|
+
"itoa",
|
|
713
|
+
"num-cmp",
|
|
714
|
+
"once_cell",
|
|
715
|
+
"percent-encoding",
|
|
716
|
+
"referencing",
|
|
717
|
+
"regex-syntax",
|
|
718
|
+
"reqwest",
|
|
719
|
+
"serde",
|
|
720
|
+
"serde_json",
|
|
721
|
+
"uuid-simd",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "lazy_static"
|
|
726
|
+
version = "1.5.0"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
729
|
+
|
|
294
730
|
[[package]]
|
|
295
731
|
name = "leb128fmt"
|
|
296
732
|
version = "0.1.0"
|
|
@@ -309,6 +745,21 @@ version = "0.12.1"
|
|
|
309
745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
746
|
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
311
747
|
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "litemap"
|
|
750
|
+
version = "0.8.2"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "lock_api"
|
|
756
|
+
version = "0.4.14"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
759
|
+
dependencies = [
|
|
760
|
+
"scopeguard",
|
|
761
|
+
]
|
|
762
|
+
|
|
312
763
|
[[package]]
|
|
313
764
|
name = "log"
|
|
314
765
|
version = "0.4.29"
|
|
@@ -321,6 +772,96 @@ version = "2.8.0"
|
|
|
321
772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
773
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
323
774
|
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "mio"
|
|
777
|
+
version = "1.2.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"libc",
|
|
782
|
+
"wasi",
|
|
783
|
+
"windows-sys",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "num"
|
|
788
|
+
version = "0.4.3"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"num-bigint",
|
|
793
|
+
"num-complex",
|
|
794
|
+
"num-integer",
|
|
795
|
+
"num-iter",
|
|
796
|
+
"num-rational",
|
|
797
|
+
"num-traits",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "num-bigint"
|
|
802
|
+
version = "0.4.6"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"num-integer",
|
|
807
|
+
"num-traits",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "num-cmp"
|
|
812
|
+
version = "0.1.0"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "num-complex"
|
|
818
|
+
version = "0.4.6"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"num-traits",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "num-integer"
|
|
827
|
+
version = "0.1.46"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"num-traits",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "num-iter"
|
|
836
|
+
version = "0.1.45"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"autocfg",
|
|
841
|
+
"num-integer",
|
|
842
|
+
"num-traits",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "num-rational"
|
|
847
|
+
version = "0.4.2"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"num-bigint",
|
|
852
|
+
"num-integer",
|
|
853
|
+
"num-traits",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "num-traits"
|
|
858
|
+
version = "0.2.19"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"autocfg",
|
|
863
|
+
]
|
|
864
|
+
|
|
324
865
|
[[package]]
|
|
325
866
|
name = "once_cell"
|
|
326
867
|
version = "1.21.4"
|
|
@@ -333,58 +874,208 @@ version = "1.70.2"
|
|
|
333
874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
875
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
335
876
|
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "outref"
|
|
879
|
+
version = "0.5.2"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "parking_lot"
|
|
885
|
+
version = "0.12.5"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"lock_api",
|
|
890
|
+
"parking_lot_core",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "parking_lot_core"
|
|
895
|
+
version = "0.9.12"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
898
|
+
dependencies = [
|
|
899
|
+
"cfg-if",
|
|
900
|
+
"libc",
|
|
901
|
+
"redox_syscall",
|
|
902
|
+
"smallvec",
|
|
903
|
+
"windows-link",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "percent-encoding"
|
|
908
|
+
version = "2.3.2"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "pin-project-lite"
|
|
914
|
+
version = "0.2.17"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "potential_utf"
|
|
920
|
+
version = "0.1.5"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"zerovec",
|
|
925
|
+
]
|
|
926
|
+
|
|
336
927
|
[[package]]
|
|
337
928
|
name = "prettyplease"
|
|
338
929
|
version = "0.2.37"
|
|
339
930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
931
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
341
932
|
dependencies = [
|
|
342
|
-
"proc-macro2",
|
|
343
|
-
"syn",
|
|
933
|
+
"proc-macro2",
|
|
934
|
+
"syn",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "proc-macro2"
|
|
939
|
+
version = "1.0.106"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"unicode-ident",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "quote"
|
|
948
|
+
version = "1.0.45"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
951
|
+
dependencies = [
|
|
952
|
+
"proc-macro2",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "r-efi"
|
|
957
|
+
version = "5.3.0"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "r-efi"
|
|
963
|
+
version = "6.0.0"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "rayon"
|
|
969
|
+
version = "1.12.0"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
972
|
+
dependencies = [
|
|
973
|
+
"either",
|
|
974
|
+
"rayon-core",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "rayon-core"
|
|
979
|
+
version = "1.13.0"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"crossbeam-deque",
|
|
984
|
+
"crossbeam-utils",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "redox_syscall"
|
|
989
|
+
version = "0.5.18"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"bitflags",
|
|
344
994
|
]
|
|
345
995
|
|
|
346
996
|
[[package]]
|
|
347
|
-
name = "
|
|
348
|
-
version = "1.0.
|
|
997
|
+
name = "ref-cast"
|
|
998
|
+
version = "1.0.25"
|
|
349
999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
-
checksum = "
|
|
1000
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
351
1001
|
dependencies = [
|
|
352
|
-
"
|
|
1002
|
+
"ref-cast-impl",
|
|
353
1003
|
]
|
|
354
1004
|
|
|
355
1005
|
[[package]]
|
|
356
|
-
name = "
|
|
357
|
-
version = "1.0.
|
|
1006
|
+
name = "ref-cast-impl"
|
|
1007
|
+
version = "1.0.25"
|
|
358
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
-
checksum = "
|
|
1009
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
360
1010
|
dependencies = [
|
|
361
1011
|
"proc-macro2",
|
|
1012
|
+
"quote",
|
|
1013
|
+
"syn",
|
|
362
1014
|
]
|
|
363
1015
|
|
|
364
1016
|
[[package]]
|
|
365
|
-
name = "
|
|
366
|
-
version = "
|
|
1017
|
+
name = "referencing"
|
|
1018
|
+
version = "0.29.1"
|
|
367
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
-
checksum = "
|
|
1020
|
+
checksum = "40a64b3a635fad9000648b4d8a59c8710c523ab61a23d392a7d91d47683f5adc"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"ahash",
|
|
1023
|
+
"fluent-uri",
|
|
1024
|
+
"once_cell",
|
|
1025
|
+
"parking_lot",
|
|
1026
|
+
"percent-encoding",
|
|
1027
|
+
"serde_json",
|
|
1028
|
+
]
|
|
369
1029
|
|
|
370
1030
|
[[package]]
|
|
371
|
-
name = "
|
|
372
|
-
version = "
|
|
1031
|
+
name = "regex-automata"
|
|
1032
|
+
version = "0.4.14"
|
|
373
1033
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
1034
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
375
1035
|
dependencies = [
|
|
376
|
-
"
|
|
377
|
-
"
|
|
1036
|
+
"aho-corasick",
|
|
1037
|
+
"memchr",
|
|
1038
|
+
"regex-syntax",
|
|
378
1039
|
]
|
|
379
1040
|
|
|
380
1041
|
[[package]]
|
|
381
|
-
name = "
|
|
382
|
-
version = "
|
|
1042
|
+
name = "regex-syntax"
|
|
1043
|
+
version = "0.8.10"
|
|
383
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
-
checksum = "
|
|
1045
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "reqwest"
|
|
1049
|
+
version = "0.12.28"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
385
1052
|
dependencies = [
|
|
386
|
-
"
|
|
387
|
-
"
|
|
1053
|
+
"base64",
|
|
1054
|
+
"bytes",
|
|
1055
|
+
"futures-channel",
|
|
1056
|
+
"futures-core",
|
|
1057
|
+
"futures-util",
|
|
1058
|
+
"http",
|
|
1059
|
+
"http-body",
|
|
1060
|
+
"http-body-util",
|
|
1061
|
+
"hyper",
|
|
1062
|
+
"hyper-util",
|
|
1063
|
+
"js-sys",
|
|
1064
|
+
"log",
|
|
1065
|
+
"percent-encoding",
|
|
1066
|
+
"pin-project-lite",
|
|
1067
|
+
"serde",
|
|
1068
|
+
"serde_json",
|
|
1069
|
+
"serde_urlencoded",
|
|
1070
|
+
"sync_wrapper",
|
|
1071
|
+
"tokio",
|
|
1072
|
+
"tower",
|
|
1073
|
+
"tower-http",
|
|
1074
|
+
"tower-service",
|
|
1075
|
+
"url",
|
|
1076
|
+
"wasm-bindgen",
|
|
1077
|
+
"wasm-bindgen-futures",
|
|
1078
|
+
"web-sys",
|
|
388
1079
|
]
|
|
389
1080
|
|
|
390
1081
|
[[package]]
|
|
@@ -430,6 +1121,12 @@ version = "1.0.23"
|
|
|
430
1121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
1122
|
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
432
1123
|
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "scopeguard"
|
|
1126
|
+
version = "1.2.0"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1129
|
+
|
|
433
1130
|
[[package]]
|
|
434
1131
|
name = "semver"
|
|
435
1132
|
version = "1.0.28"
|
|
@@ -489,6 +1186,18 @@ dependencies = [
|
|
|
489
1186
|
"serde",
|
|
490
1187
|
]
|
|
491
1188
|
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "serde_urlencoded"
|
|
1191
|
+
version = "0.7.1"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"form_urlencoded",
|
|
1196
|
+
"itoa",
|
|
1197
|
+
"ryu",
|
|
1198
|
+
"serde",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
492
1201
|
[[package]]
|
|
493
1202
|
name = "serde_yaml"
|
|
494
1203
|
version = "0.9.34+deprecated"
|
|
@@ -502,6 +1211,34 @@ dependencies = [
|
|
|
502
1211
|
"unsafe-libyaml",
|
|
503
1212
|
]
|
|
504
1213
|
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "slab"
|
|
1216
|
+
version = "0.4.12"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "smallvec"
|
|
1222
|
+
version = "1.15.1"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "socket2"
|
|
1228
|
+
version = "0.6.3"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"libc",
|
|
1233
|
+
"windows-sys",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "stable_deref_trait"
|
|
1238
|
+
version = "1.2.1"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1241
|
+
|
|
505
1242
|
[[package]]
|
|
506
1243
|
name = "strsim"
|
|
507
1244
|
version = "0.11.1"
|
|
@@ -519,6 +1256,26 @@ dependencies = [
|
|
|
519
1256
|
"unicode-ident",
|
|
520
1257
|
]
|
|
521
1258
|
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "sync_wrapper"
|
|
1261
|
+
version = "1.0.2"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"futures-core",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "synstructure"
|
|
1270
|
+
version = "0.13.2"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1273
|
+
dependencies = [
|
|
1274
|
+
"proc-macro2",
|
|
1275
|
+
"quote",
|
|
1276
|
+
"syn",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
522
1279
|
[[package]]
|
|
523
1280
|
name = "tempfile"
|
|
524
1281
|
version = "3.27.0"
|
|
@@ -526,7 +1283,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
526
1283
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
527
1284
|
dependencies = [
|
|
528
1285
|
"fastrand",
|
|
529
|
-
"getrandom",
|
|
1286
|
+
"getrandom 0.4.2",
|
|
530
1287
|
"once_cell",
|
|
531
1288
|
"rustix",
|
|
532
1289
|
"windows-sys",
|
|
@@ -538,6 +1295,29 @@ version = "1.1.1"
|
|
|
538
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
1296
|
checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
|
|
540
1297
|
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "tinystr"
|
|
1300
|
+
version = "0.8.3"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"displaydoc",
|
|
1305
|
+
"zerovec",
|
|
1306
|
+
]
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "tokio"
|
|
1310
|
+
version = "1.52.3"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1313
|
+
dependencies = [
|
|
1314
|
+
"libc",
|
|
1315
|
+
"mio",
|
|
1316
|
+
"pin-project-lite",
|
|
1317
|
+
"socket2",
|
|
1318
|
+
"windows-sys",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
541
1321
|
[[package]]
|
|
542
1322
|
name = "toml"
|
|
543
1323
|
version = "0.8.23"
|
|
@@ -579,6 +1359,76 @@ version = "0.1.2"
|
|
|
579
1359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
1360
|
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
581
1361
|
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "tower"
|
|
1364
|
+
version = "0.5.3"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1367
|
+
dependencies = [
|
|
1368
|
+
"futures-core",
|
|
1369
|
+
"futures-util",
|
|
1370
|
+
"pin-project-lite",
|
|
1371
|
+
"sync_wrapper",
|
|
1372
|
+
"tokio",
|
|
1373
|
+
"tower-layer",
|
|
1374
|
+
"tower-service",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "tower-http"
|
|
1379
|
+
version = "0.6.10"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
|
|
1382
|
+
dependencies = [
|
|
1383
|
+
"bitflags",
|
|
1384
|
+
"bytes",
|
|
1385
|
+
"futures-util",
|
|
1386
|
+
"http",
|
|
1387
|
+
"http-body",
|
|
1388
|
+
"pin-project-lite",
|
|
1389
|
+
"tower",
|
|
1390
|
+
"tower-layer",
|
|
1391
|
+
"tower-service",
|
|
1392
|
+
"url",
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "tower-layer"
|
|
1397
|
+
version = "0.3.3"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "tower-service"
|
|
1403
|
+
version = "0.3.3"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "tracing"
|
|
1409
|
+
version = "0.1.44"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1412
|
+
dependencies = [
|
|
1413
|
+
"pin-project-lite",
|
|
1414
|
+
"tracing-core",
|
|
1415
|
+
]
|
|
1416
|
+
|
|
1417
|
+
[[package]]
|
|
1418
|
+
name = "tracing-core"
|
|
1419
|
+
version = "0.1.36"
|
|
1420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1422
|
+
dependencies = [
|
|
1423
|
+
"once_cell",
|
|
1424
|
+
]
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "try-lock"
|
|
1428
|
+
version = "0.2.5"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1431
|
+
|
|
582
1432
|
[[package]]
|
|
583
1433
|
name = "unicode-ident"
|
|
584
1434
|
version = "1.0.24"
|
|
@@ -597,12 +1447,78 @@ version = "0.2.11"
|
|
|
597
1447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
1448
|
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
599
1449
|
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "url"
|
|
1452
|
+
version = "2.5.8"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1455
|
+
dependencies = [
|
|
1456
|
+
"form_urlencoded",
|
|
1457
|
+
"idna",
|
|
1458
|
+
"percent-encoding",
|
|
1459
|
+
"serde",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "utf8_iter"
|
|
1464
|
+
version = "1.0.4"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1467
|
+
|
|
600
1468
|
[[package]]
|
|
601
1469
|
name = "utf8parse"
|
|
602
1470
|
version = "0.2.2"
|
|
603
1471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
1472
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
605
1473
|
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "uuid"
|
|
1476
|
+
version = "1.23.1"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"js-sys",
|
|
1481
|
+
"wasm-bindgen",
|
|
1482
|
+
]
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "uuid-simd"
|
|
1486
|
+
version = "0.8.0"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"outref",
|
|
1491
|
+
"uuid",
|
|
1492
|
+
"vsimd",
|
|
1493
|
+
]
|
|
1494
|
+
|
|
1495
|
+
[[package]]
|
|
1496
|
+
name = "version_check"
|
|
1497
|
+
version = "0.9.5"
|
|
1498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1499
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "vsimd"
|
|
1503
|
+
version = "0.8.0"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "want"
|
|
1509
|
+
version = "0.3.1"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"try-lock",
|
|
1514
|
+
]
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "wasi"
|
|
1518
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1521
|
+
|
|
606
1522
|
[[package]]
|
|
607
1523
|
name = "wasip2"
|
|
608
1524
|
version = "1.0.3+wasi-0.2.9"
|
|
@@ -621,6 +1537,61 @@ dependencies = [
|
|
|
621
1537
|
"wit-bindgen 0.51.0",
|
|
622
1538
|
]
|
|
623
1539
|
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "wasm-bindgen"
|
|
1542
|
+
version = "0.2.121"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"cfg-if",
|
|
1547
|
+
"once_cell",
|
|
1548
|
+
"rustversion",
|
|
1549
|
+
"wasm-bindgen-macro",
|
|
1550
|
+
"wasm-bindgen-shared",
|
|
1551
|
+
]
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "wasm-bindgen-futures"
|
|
1555
|
+
version = "0.4.71"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"js-sys",
|
|
1560
|
+
"wasm-bindgen",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "wasm-bindgen-macro"
|
|
1565
|
+
version = "0.2.121"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"quote",
|
|
1570
|
+
"wasm-bindgen-macro-support",
|
|
1571
|
+
]
|
|
1572
|
+
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "wasm-bindgen-macro-support"
|
|
1575
|
+
version = "0.2.121"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
|
|
1578
|
+
dependencies = [
|
|
1579
|
+
"bumpalo",
|
|
1580
|
+
"proc-macro2",
|
|
1581
|
+
"quote",
|
|
1582
|
+
"syn",
|
|
1583
|
+
"wasm-bindgen-shared",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "wasm-bindgen-shared"
|
|
1588
|
+
version = "0.2.121"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"unicode-ident",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
624
1595
|
[[package]]
|
|
625
1596
|
name = "wasm-encoder"
|
|
626
1597
|
version = "0.244.0"
|
|
@@ -655,6 +1626,16 @@ dependencies = [
|
|
|
655
1626
|
"semver",
|
|
656
1627
|
]
|
|
657
1628
|
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "web-sys"
|
|
1631
|
+
version = "0.3.98"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"js-sys",
|
|
1636
|
+
"wasm-bindgen",
|
|
1637
|
+
]
|
|
1638
|
+
|
|
658
1639
|
[[package]]
|
|
659
1640
|
name = "windows-link"
|
|
660
1641
|
version = "0.2.1"
|
|
@@ -773,6 +1754,12 @@ dependencies = [
|
|
|
773
1754
|
"wasmparser",
|
|
774
1755
|
]
|
|
775
1756
|
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "writeable"
|
|
1759
|
+
version = "0.6.3"
|
|
1760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1762
|
+
|
|
776
1763
|
[[package]]
|
|
777
1764
|
name = "yaml_parser"
|
|
778
1765
|
version = "0.3.0"
|
|
@@ -785,12 +1772,13 @@ dependencies = [
|
|
|
785
1772
|
|
|
786
1773
|
[[package]]
|
|
787
1774
|
name = "yerba"
|
|
788
|
-
version = "0.
|
|
1775
|
+
version = "0.5.0"
|
|
789
1776
|
dependencies = [
|
|
790
1777
|
"cbindgen",
|
|
791
1778
|
"clap",
|
|
792
1779
|
"glob",
|
|
793
1780
|
"indoc",
|
|
1781
|
+
"jsonschema",
|
|
794
1782
|
"rayon",
|
|
795
1783
|
"rowan",
|
|
796
1784
|
"serde",
|
|
@@ -800,6 +1788,103 @@ dependencies = [
|
|
|
800
1788
|
"yaml_parser",
|
|
801
1789
|
]
|
|
802
1790
|
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "yoke"
|
|
1793
|
+
version = "0.8.2"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"stable_deref_trait",
|
|
1798
|
+
"yoke-derive",
|
|
1799
|
+
"zerofrom",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "yoke-derive"
|
|
1804
|
+
version = "0.8.2"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"proc-macro2",
|
|
1809
|
+
"quote",
|
|
1810
|
+
"syn",
|
|
1811
|
+
"synstructure",
|
|
1812
|
+
]
|
|
1813
|
+
|
|
1814
|
+
[[package]]
|
|
1815
|
+
name = "zerocopy"
|
|
1816
|
+
version = "0.8.48"
|
|
1817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1819
|
+
dependencies = [
|
|
1820
|
+
"zerocopy-derive",
|
|
1821
|
+
]
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "zerocopy-derive"
|
|
1825
|
+
version = "0.8.48"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1828
|
+
dependencies = [
|
|
1829
|
+
"proc-macro2",
|
|
1830
|
+
"quote",
|
|
1831
|
+
"syn",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "zerofrom"
|
|
1836
|
+
version = "0.1.7"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"zerofrom-derive",
|
|
1841
|
+
]
|
|
1842
|
+
|
|
1843
|
+
[[package]]
|
|
1844
|
+
name = "zerofrom-derive"
|
|
1845
|
+
version = "0.1.7"
|
|
1846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1848
|
+
dependencies = [
|
|
1849
|
+
"proc-macro2",
|
|
1850
|
+
"quote",
|
|
1851
|
+
"syn",
|
|
1852
|
+
"synstructure",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "zerotrie"
|
|
1857
|
+
version = "0.2.4"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1860
|
+
dependencies = [
|
|
1861
|
+
"displaydoc",
|
|
1862
|
+
"yoke",
|
|
1863
|
+
"zerofrom",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "zerovec"
|
|
1868
|
+
version = "0.11.6"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1871
|
+
dependencies = [
|
|
1872
|
+
"yoke",
|
|
1873
|
+
"zerofrom",
|
|
1874
|
+
"zerovec-derive",
|
|
1875
|
+
]
|
|
1876
|
+
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "zerovec-derive"
|
|
1879
|
+
version = "0.11.3"
|
|
1880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1882
|
+
dependencies = [
|
|
1883
|
+
"proc-macro2",
|
|
1884
|
+
"quote",
|
|
1885
|
+
"syn",
|
|
1886
|
+
]
|
|
1887
|
+
|
|
803
1888
|
[[package]]
|
|
804
1889
|
name = "zmij"
|
|
805
1890
|
version = "1.0.21"
|