yerba 0.4.2-aarch64-linux-gnu → 0.5.1-aarch64-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.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +242 -54
  3. data/exe/aarch64-linux-gnu/yerba +0 -0
  4. data/ext/yerba/include/yerba.h +13 -1
  5. data/ext/yerba/yerba.c +239 -113
  6. data/lib/yerba/3.2/yerba.so +0 -0
  7. data/lib/yerba/3.3/yerba.so +0 -0
  8. data/lib/yerba/3.4/yerba.so +0 -0
  9. data/lib/yerba/4.0/yerba.so +0 -0
  10. data/lib/yerba/document.rb +54 -18
  11. data/lib/yerba/map.rb +55 -43
  12. data/lib/yerba/node.rb +58 -0
  13. data/lib/yerba/scalar.rb +20 -23
  14. data/lib/yerba/sequence.rb +88 -55
  15. data/lib/yerba/version.rb +1 -1
  16. data/lib/yerba.rb +2 -0
  17. data/rust/Cargo.lock +1120 -35
  18. data/rust/Cargo.toml +3 -2
  19. data/rust/src/commands/delete.rs +1 -1
  20. data/rust/src/commands/get.rs +47 -12
  21. data/rust/src/commands/insert.rs +1 -1
  22. data/rust/src/commands/location.rs +56 -0
  23. data/rust/src/commands/mod.rs +33 -5
  24. data/rust/src/commands/remove.rs +1 -1
  25. data/rust/src/commands/rename.rs +1 -1
  26. data/rust/src/commands/schema.rs +84 -0
  27. data/rust/src/commands/selectors.rs +4 -4
  28. data/rust/src/commands/set.rs +1 -1
  29. data/rust/src/commands/sort.rs +1 -1
  30. data/rust/src/commands/unique.rs +80 -0
  31. data/rust/src/document/condition.rs +18 -2
  32. data/rust/src/document/delete.rs +52 -8
  33. data/rust/src/document/get.rs +256 -25
  34. data/rust/src/document/insert.rs +3 -3
  35. data/rust/src/document/mod.rs +112 -34
  36. data/rust/src/document/schema.rs +73 -0
  37. data/rust/src/document/set.rs +1 -1
  38. data/rust/src/document/sort.rs +21 -15
  39. data/rust/src/document/style.rs +3 -3
  40. data/rust/src/document/unique.rs +86 -0
  41. data/rust/src/error.rs +78 -0
  42. data/rust/src/ffi.rs +89 -9
  43. data/rust/src/json.rs +16 -16
  44. data/rust/src/lib.rs +7 -12
  45. data/rust/src/main.rs +2 -0
  46. data/rust/src/schema.rs +93 -0
  47. data/rust/src/selector.rs +16 -0
  48. data/rust/src/syntax.rs +91 -31
  49. data/rust/src/yerbafile.rs +127 -81
  50. 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"
@@ -303,12 +739,33 @@ version = "0.2.186"
303
739
  source = "registry+https://github.com/rust-lang/crates.io-index"
304
740
  checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
305
741
 
742
+ [[package]]
743
+ name = "libyaml-rs"
744
+ version = "0.3.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777"
747
+
306
748
  [[package]]
307
749
  name = "linux-raw-sys"
308
750
  version = "0.12.1"
309
751
  source = "registry+https://github.com/rust-lang/crates.io-index"
310
752
  checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
311
753
 
754
+ [[package]]
755
+ name = "litemap"
756
+ version = "0.8.2"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
759
+
760
+ [[package]]
761
+ name = "lock_api"
762
+ version = "0.4.14"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
765
+ dependencies = [
766
+ "scopeguard",
767
+ ]
768
+
312
769
  [[package]]
313
770
  name = "log"
314
771
  version = "0.4.29"
@@ -321,6 +778,96 @@ version = "2.8.0"
321
778
  source = "registry+https://github.com/rust-lang/crates.io-index"
322
779
  checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
323
780
 
781
+ [[package]]
782
+ name = "mio"
783
+ version = "1.2.0"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
786
+ dependencies = [
787
+ "libc",
788
+ "wasi",
789
+ "windows-sys",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "num"
794
+ version = "0.4.3"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
797
+ dependencies = [
798
+ "num-bigint",
799
+ "num-complex",
800
+ "num-integer",
801
+ "num-iter",
802
+ "num-rational",
803
+ "num-traits",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "num-bigint"
808
+ version = "0.4.6"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
811
+ dependencies = [
812
+ "num-integer",
813
+ "num-traits",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "num-cmp"
818
+ version = "0.1.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
821
+
822
+ [[package]]
823
+ name = "num-complex"
824
+ version = "0.4.6"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
827
+ dependencies = [
828
+ "num-traits",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "num-integer"
833
+ version = "0.1.46"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
836
+ dependencies = [
837
+ "num-traits",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "num-iter"
842
+ version = "0.1.45"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
845
+ dependencies = [
846
+ "autocfg",
847
+ "num-integer",
848
+ "num-traits",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "num-rational"
853
+ version = "0.4.2"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
856
+ dependencies = [
857
+ "num-bigint",
858
+ "num-integer",
859
+ "num-traits",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "num-traits"
864
+ version = "0.2.19"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
867
+ dependencies = [
868
+ "autocfg",
869
+ ]
870
+
324
871
  [[package]]
325
872
  name = "once_cell"
326
873
  version = "1.21.4"
@@ -333,58 +880,208 @@ version = "1.70.2"
333
880
  source = "registry+https://github.com/rust-lang/crates.io-index"
334
881
  checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
335
882
 
883
+ [[package]]
884
+ name = "outref"
885
+ version = "0.5.2"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
888
+
889
+ [[package]]
890
+ name = "parking_lot"
891
+ version = "0.12.5"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
894
+ dependencies = [
895
+ "lock_api",
896
+ "parking_lot_core",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "parking_lot_core"
901
+ version = "0.9.12"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
904
+ dependencies = [
905
+ "cfg-if",
906
+ "libc",
907
+ "redox_syscall",
908
+ "smallvec",
909
+ "windows-link",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "percent-encoding"
914
+ version = "2.3.2"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
917
+
918
+ [[package]]
919
+ name = "pin-project-lite"
920
+ version = "0.2.17"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
923
+
924
+ [[package]]
925
+ name = "potential_utf"
926
+ version = "0.1.5"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
929
+ dependencies = [
930
+ "zerovec",
931
+ ]
932
+
336
933
  [[package]]
337
934
  name = "prettyplease"
338
935
  version = "0.2.37"
339
936
  source = "registry+https://github.com/rust-lang/crates.io-index"
340
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
937
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
938
+ dependencies = [
939
+ "proc-macro2",
940
+ "syn",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "proc-macro2"
945
+ version = "1.0.106"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
948
+ dependencies = [
949
+ "unicode-ident",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "quote"
954
+ version = "1.0.45"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
957
+ dependencies = [
958
+ "proc-macro2",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "r-efi"
963
+ version = "5.3.0"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
966
+
967
+ [[package]]
968
+ name = "r-efi"
969
+ version = "6.0.0"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
972
+
973
+ [[package]]
974
+ name = "rayon"
975
+ version = "1.12.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
978
+ dependencies = [
979
+ "either",
980
+ "rayon-core",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "rayon-core"
985
+ version = "1.13.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
988
+ dependencies = [
989
+ "crossbeam-deque",
990
+ "crossbeam-utils",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "redox_syscall"
995
+ version = "0.5.18"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
341
998
  dependencies = [
342
- "proc-macro2",
343
- "syn",
999
+ "bitflags",
344
1000
  ]
345
1001
 
346
1002
  [[package]]
347
- name = "proc-macro2"
348
- version = "1.0.106"
1003
+ name = "ref-cast"
1004
+ version = "1.0.25"
349
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
350
- checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1006
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
351
1007
  dependencies = [
352
- "unicode-ident",
1008
+ "ref-cast-impl",
353
1009
  ]
354
1010
 
355
1011
  [[package]]
356
- name = "quote"
357
- version = "1.0.45"
1012
+ name = "ref-cast-impl"
1013
+ version = "1.0.25"
358
1014
  source = "registry+https://github.com/rust-lang/crates.io-index"
359
- checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1015
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
360
1016
  dependencies = [
361
1017
  "proc-macro2",
1018
+ "quote",
1019
+ "syn",
362
1020
  ]
363
1021
 
364
1022
  [[package]]
365
- name = "r-efi"
366
- version = "6.0.0"
1023
+ name = "referencing"
1024
+ version = "0.29.1"
367
1025
  source = "registry+https://github.com/rust-lang/crates.io-index"
368
- checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1026
+ checksum = "40a64b3a635fad9000648b4d8a59c8710c523ab61a23d392a7d91d47683f5adc"
1027
+ dependencies = [
1028
+ "ahash",
1029
+ "fluent-uri",
1030
+ "once_cell",
1031
+ "parking_lot",
1032
+ "percent-encoding",
1033
+ "serde_json",
1034
+ ]
369
1035
 
370
1036
  [[package]]
371
- name = "rayon"
372
- version = "1.12.0"
1037
+ name = "regex-automata"
1038
+ version = "0.4.14"
373
1039
  source = "registry+https://github.com/rust-lang/crates.io-index"
374
- checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1040
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
375
1041
  dependencies = [
376
- "either",
377
- "rayon-core",
1042
+ "aho-corasick",
1043
+ "memchr",
1044
+ "regex-syntax",
378
1045
  ]
379
1046
 
380
1047
  [[package]]
381
- name = "rayon-core"
382
- version = "1.13.0"
1048
+ name = "regex-syntax"
1049
+ version = "0.8.10"
383
1050
  source = "registry+https://github.com/rust-lang/crates.io-index"
384
- checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1051
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1052
+
1053
+ [[package]]
1054
+ name = "reqwest"
1055
+ version = "0.12.28"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
385
1058
  dependencies = [
386
- "crossbeam-deque",
387
- "crossbeam-utils",
1059
+ "base64",
1060
+ "bytes",
1061
+ "futures-channel",
1062
+ "futures-core",
1063
+ "futures-util",
1064
+ "http",
1065
+ "http-body",
1066
+ "http-body-util",
1067
+ "hyper",
1068
+ "hyper-util",
1069
+ "js-sys",
1070
+ "log",
1071
+ "percent-encoding",
1072
+ "pin-project-lite",
1073
+ "serde",
1074
+ "serde_json",
1075
+ "serde_urlencoded",
1076
+ "sync_wrapper",
1077
+ "tokio",
1078
+ "tower",
1079
+ "tower-http",
1080
+ "tower-service",
1081
+ "url",
1082
+ "wasm-bindgen",
1083
+ "wasm-bindgen-futures",
1084
+ "web-sys",
388
1085
  ]
389
1086
 
390
1087
  [[package]]
@@ -430,6 +1127,12 @@ version = "1.0.23"
430
1127
  source = "registry+https://github.com/rust-lang/crates.io-index"
431
1128
  checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
432
1129
 
1130
+ [[package]]
1131
+ name = "scopeguard"
1132
+ version = "1.2.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1135
+
433
1136
  [[package]]
434
1137
  name = "semver"
435
1138
  version = "1.0.28"
@@ -490,18 +1193,45 @@ dependencies = [
490
1193
  ]
491
1194
 
492
1195
  [[package]]
493
- name = "serde_yaml"
494
- version = "0.9.34+deprecated"
1196
+ name = "serde_urlencoded"
1197
+ version = "0.7.1"
495
1198
  source = "registry+https://github.com/rust-lang/crates.io-index"
496
- checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1199
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
497
1200
  dependencies = [
498
- "indexmap",
1201
+ "form_urlencoded",
499
1202
  "itoa",
500
1203
  "ryu",
501
1204
  "serde",
502
- "unsafe-libyaml",
503
1205
  ]
504
1206
 
1207
+ [[package]]
1208
+ name = "slab"
1209
+ version = "0.4.12"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1212
+
1213
+ [[package]]
1214
+ name = "smallvec"
1215
+ version = "1.15.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1218
+
1219
+ [[package]]
1220
+ name = "socket2"
1221
+ version = "0.6.3"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1224
+ dependencies = [
1225
+ "libc",
1226
+ "windows-sys",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "stable_deref_trait"
1231
+ version = "1.2.1"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1234
+
505
1235
  [[package]]
506
1236
  name = "strsim"
507
1237
  version = "0.11.1"
@@ -519,6 +1249,26 @@ dependencies = [
519
1249
  "unicode-ident",
520
1250
  ]
521
1251
 
1252
+ [[package]]
1253
+ name = "sync_wrapper"
1254
+ version = "1.0.2"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1257
+ dependencies = [
1258
+ "futures-core",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "synstructure"
1263
+ version = "0.13.2"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1266
+ dependencies = [
1267
+ "proc-macro2",
1268
+ "quote",
1269
+ "syn",
1270
+ ]
1271
+
522
1272
  [[package]]
523
1273
  name = "tempfile"
524
1274
  version = "3.27.0"
@@ -526,7 +1276,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
526
1276
  checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
527
1277
  dependencies = [
528
1278
  "fastrand",
529
- "getrandom",
1279
+ "getrandom 0.4.2",
530
1280
  "once_cell",
531
1281
  "rustix",
532
1282
  "windows-sys",
@@ -538,6 +1288,29 @@ version = "1.1.1"
538
1288
  source = "registry+https://github.com/rust-lang/crates.io-index"
539
1289
  checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
540
1290
 
1291
+ [[package]]
1292
+ name = "tinystr"
1293
+ version = "0.8.3"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1296
+ dependencies = [
1297
+ "displaydoc",
1298
+ "zerovec",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "tokio"
1303
+ version = "1.52.3"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1306
+ dependencies = [
1307
+ "libc",
1308
+ "mio",
1309
+ "pin-project-lite",
1310
+ "socket2",
1311
+ "windows-sys",
1312
+ ]
1313
+
541
1314
  [[package]]
542
1315
  name = "toml"
543
1316
  version = "0.8.23"
@@ -579,6 +1352,76 @@ version = "0.1.2"
579
1352
  source = "registry+https://github.com/rust-lang/crates.io-index"
580
1353
  checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
581
1354
 
1355
+ [[package]]
1356
+ name = "tower"
1357
+ version = "0.5.3"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1360
+ dependencies = [
1361
+ "futures-core",
1362
+ "futures-util",
1363
+ "pin-project-lite",
1364
+ "sync_wrapper",
1365
+ "tokio",
1366
+ "tower-layer",
1367
+ "tower-service",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "tower-http"
1372
+ version = "0.6.10"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
1375
+ dependencies = [
1376
+ "bitflags",
1377
+ "bytes",
1378
+ "futures-util",
1379
+ "http",
1380
+ "http-body",
1381
+ "pin-project-lite",
1382
+ "tower",
1383
+ "tower-layer",
1384
+ "tower-service",
1385
+ "url",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "tower-layer"
1390
+ version = "0.3.3"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1393
+
1394
+ [[package]]
1395
+ name = "tower-service"
1396
+ version = "0.3.3"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1399
+
1400
+ [[package]]
1401
+ name = "tracing"
1402
+ version = "0.1.44"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1405
+ dependencies = [
1406
+ "pin-project-lite",
1407
+ "tracing-core",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "tracing-core"
1412
+ version = "0.1.36"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1415
+ dependencies = [
1416
+ "once_cell",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "try-lock"
1421
+ version = "0.2.5"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1424
+
582
1425
  [[package]]
583
1426
  name = "unicode-ident"
584
1427
  version = "1.0.24"
@@ -592,10 +1435,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
592
1435
  checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
593
1436
 
594
1437
  [[package]]
595
- name = "unsafe-libyaml"
596
- version = "0.2.11"
1438
+ name = "url"
1439
+ version = "2.5.8"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1442
+ dependencies = [
1443
+ "form_urlencoded",
1444
+ "idna",
1445
+ "percent-encoding",
1446
+ "serde",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "utf8_iter"
1451
+ version = "1.0.4"
597
1452
  source = "registry+https://github.com/rust-lang/crates.io-index"
598
- checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1453
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
599
1454
 
600
1455
  [[package]]
601
1456
  name = "utf8parse"
@@ -603,6 +1458,54 @@ version = "0.2.2"
603
1458
  source = "registry+https://github.com/rust-lang/crates.io-index"
604
1459
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
605
1460
 
1461
+ [[package]]
1462
+ name = "uuid"
1463
+ version = "1.23.1"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
1466
+ dependencies = [
1467
+ "js-sys",
1468
+ "wasm-bindgen",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "uuid-simd"
1473
+ version = "0.8.0"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
1476
+ dependencies = [
1477
+ "outref",
1478
+ "uuid",
1479
+ "vsimd",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "version_check"
1484
+ version = "0.9.5"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1487
+
1488
+ [[package]]
1489
+ name = "vsimd"
1490
+ version = "0.8.0"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
1493
+
1494
+ [[package]]
1495
+ name = "want"
1496
+ version = "0.3.1"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1499
+ dependencies = [
1500
+ "try-lock",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "wasi"
1505
+ version = "0.11.1+wasi-snapshot-preview1"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1508
+
606
1509
  [[package]]
607
1510
  name = "wasip2"
608
1511
  version = "1.0.3+wasi-0.2.9"
@@ -621,6 +1524,61 @@ dependencies = [
621
1524
  "wit-bindgen 0.51.0",
622
1525
  ]
623
1526
 
1527
+ [[package]]
1528
+ name = "wasm-bindgen"
1529
+ version = "0.2.121"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
1532
+ dependencies = [
1533
+ "cfg-if",
1534
+ "once_cell",
1535
+ "rustversion",
1536
+ "wasm-bindgen-macro",
1537
+ "wasm-bindgen-shared",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "wasm-bindgen-futures"
1542
+ version = "0.4.71"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
1545
+ dependencies = [
1546
+ "js-sys",
1547
+ "wasm-bindgen",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "wasm-bindgen-macro"
1552
+ version = "0.2.121"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
1555
+ dependencies = [
1556
+ "quote",
1557
+ "wasm-bindgen-macro-support",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "wasm-bindgen-macro-support"
1562
+ version = "0.2.121"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
1565
+ dependencies = [
1566
+ "bumpalo",
1567
+ "proc-macro2",
1568
+ "quote",
1569
+ "syn",
1570
+ "wasm-bindgen-shared",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "wasm-bindgen-shared"
1575
+ version = "0.2.121"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
1578
+ dependencies = [
1579
+ "unicode-ident",
1580
+ ]
1581
+
624
1582
  [[package]]
625
1583
  name = "wasm-encoder"
626
1584
  version = "0.244.0"
@@ -655,6 +1613,16 @@ dependencies = [
655
1613
  "semver",
656
1614
  ]
657
1615
 
1616
+ [[package]]
1617
+ name = "web-sys"
1618
+ version = "0.3.98"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
1621
+ dependencies = [
1622
+ "js-sys",
1623
+ "wasm-bindgen",
1624
+ ]
1625
+
658
1626
  [[package]]
659
1627
  name = "windows-link"
660
1628
  version = "0.2.1"
@@ -773,6 +1741,12 @@ dependencies = [
773
1741
  "wasmparser",
774
1742
  ]
775
1743
 
1744
+ [[package]]
1745
+ name = "writeable"
1746
+ version = "0.6.3"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1749
+
776
1750
  [[package]]
777
1751
  name = "yaml_parser"
778
1752
  version = "0.3.0"
@@ -783,21 +1757,132 @@ dependencies = [
783
1757
  "winnow",
784
1758
  ]
785
1759
 
1760
+ [[package]]
1761
+ name = "yaml_serde"
1762
+ version = "0.10.4"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "08c7c1b1a6a7c8a6b2741a6c21a4f8918e51899b111cfa08d1288202656e3975"
1765
+ dependencies = [
1766
+ "indexmap",
1767
+ "itoa",
1768
+ "libyaml-rs",
1769
+ "ryu",
1770
+ "serde",
1771
+ ]
1772
+
786
1773
  [[package]]
787
1774
  name = "yerba"
788
- version = "0.4.2"
1775
+ version = "0.5.1"
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",
797
1785
  "serde_json",
798
- "serde_yaml",
799
1786
  "tempfile",
800
1787
  "yaml_parser",
1788
+ "yaml_serde",
1789
+ ]
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",
801
1886
  ]
802
1887
 
803
1888
  [[package]]