gitlab-glaz 0.0.3-aarch64-linux-gnu → 1.1.0-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.
- checksums.yaml +4 -4
- data/Cargo.lock +862 -78
- data/Cargo.toml +5 -2
- data/README.md +21 -37
- data/ext/glaz/Cargo.toml +3 -0
- data/ext/glaz/src/lib.rs +139 -14
- data/lib/gitlab/glaz/3.1/glaz.so +0 -0
- data/lib/gitlab/glaz/3.2/glaz.so +0 -0
- data/lib/gitlab/glaz/3.3/glaz.so +0 -0
- data/lib/gitlab/glaz/3.4/glaz.so +0 -0
- data/lib/gitlab/glaz/4.0/glaz.so +0 -0
- data/lib/gitlab/glaz/engine.rb +60 -0
- data/lib/gitlab/glaz/govern_policy_engine.rb +140 -0
- data/lib/gitlab/glaz/version.rb +1 -1
- data/lib/gitlab/glaz.rb +19 -10
- data/lib/proto/govern_pb.rb +23 -0
- data/lib/proto/relationships/relationships_pb.rb +28 -0
- data/lib/proto/service_pb.rb +7 -5
- metadata +6 -2
data/Cargo.lock
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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
|
+
|
|
5
19
|
[[package]]
|
|
6
20
|
name = "aho-corasick"
|
|
7
21
|
version = "1.1.4"
|
|
@@ -11,6 +25,12 @@ dependencies = [
|
|
|
11
25
|
"memchr",
|
|
12
26
|
]
|
|
13
27
|
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "allocator-api2"
|
|
30
|
+
version = "0.2.21"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
33
|
+
|
|
14
34
|
[[package]]
|
|
15
35
|
name = "android_system_properties"
|
|
16
36
|
version = "0.1.5"
|
|
@@ -58,7 +78,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
|
58
78
|
dependencies = [
|
|
59
79
|
"proc-macro2",
|
|
60
80
|
"quote",
|
|
61
|
-
"syn",
|
|
81
|
+
"syn 2.0.117",
|
|
62
82
|
]
|
|
63
83
|
|
|
64
84
|
[[package]]
|
|
@@ -88,7 +108,7 @@ dependencies = [
|
|
|
88
108
|
"regex",
|
|
89
109
|
"rustc-hash",
|
|
90
110
|
"shlex",
|
|
91
|
-
"syn",
|
|
111
|
+
"syn 2.0.117",
|
|
92
112
|
]
|
|
93
113
|
|
|
94
114
|
[[package]]
|
|
@@ -121,6 +141,12 @@ dependencies = [
|
|
|
121
141
|
"generic-array",
|
|
122
142
|
]
|
|
123
143
|
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "borrow-or-share"
|
|
146
|
+
version = "0.2.4"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
|
|
149
|
+
|
|
124
150
|
[[package]]
|
|
125
151
|
name = "borsh"
|
|
126
152
|
version = "1.6.1"
|
|
@@ -131,12 +157,28 @@ dependencies = [
|
|
|
131
157
|
"cfg_aliases",
|
|
132
158
|
]
|
|
133
159
|
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "bstr"
|
|
162
|
+
version = "1.13.0"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"memchr",
|
|
167
|
+
"serde_core",
|
|
168
|
+
]
|
|
169
|
+
|
|
134
170
|
[[package]]
|
|
135
171
|
name = "bumpalo"
|
|
136
172
|
version = "3.20.2"
|
|
137
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
174
|
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
139
175
|
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "bytecount"
|
|
178
|
+
version = "0.6.9"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
181
|
+
|
|
140
182
|
[[package]]
|
|
141
183
|
name = "bytes"
|
|
142
184
|
version = "1.11.1"
|
|
@@ -237,6 +279,17 @@ version = "0.2.1"
|
|
|
237
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
280
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
239
281
|
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "chacha20"
|
|
284
|
+
version = "0.10.1"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"cfg-if",
|
|
289
|
+
"cpufeatures 0.3.0",
|
|
290
|
+
"rand_core",
|
|
291
|
+
]
|
|
292
|
+
|
|
240
293
|
[[package]]
|
|
241
294
|
name = "chrono"
|
|
242
295
|
version = "0.4.44"
|
|
@@ -251,6 +304,16 @@ dependencies = [
|
|
|
251
304
|
"windows-link",
|
|
252
305
|
]
|
|
253
306
|
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "chrono-tz"
|
|
309
|
+
version = "0.10.4"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"chrono",
|
|
314
|
+
"phf",
|
|
315
|
+
]
|
|
316
|
+
|
|
254
317
|
[[package]]
|
|
255
318
|
name = "clang-sys"
|
|
256
319
|
version = "1.8.1"
|
|
@@ -262,6 +325,15 @@ dependencies = [
|
|
|
262
325
|
"libloading",
|
|
263
326
|
]
|
|
264
327
|
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "cobs"
|
|
330
|
+
version = "0.3.0"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"thiserror",
|
|
335
|
+
]
|
|
336
|
+
|
|
265
337
|
[[package]]
|
|
266
338
|
name = "core-foundation-sys"
|
|
267
339
|
version = "0.8.7"
|
|
@@ -277,6 +349,15 @@ dependencies = [
|
|
|
277
349
|
"libc",
|
|
278
350
|
]
|
|
279
351
|
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "cpufeatures"
|
|
354
|
+
version = "0.3.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"libc",
|
|
359
|
+
]
|
|
360
|
+
|
|
280
361
|
[[package]]
|
|
281
362
|
name = "crypto-common"
|
|
282
363
|
version = "0.1.7"
|
|
@@ -307,7 +388,7 @@ dependencies = [
|
|
|
307
388
|
"proc-macro2",
|
|
308
389
|
"quote",
|
|
309
390
|
"strsim",
|
|
310
|
-
"syn",
|
|
391
|
+
"syn 2.0.117",
|
|
311
392
|
]
|
|
312
393
|
|
|
313
394
|
[[package]]
|
|
@@ -318,9 +399,15 @@ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
|
318
399
|
dependencies = [
|
|
319
400
|
"darling_core",
|
|
320
401
|
"quote",
|
|
321
|
-
"syn",
|
|
402
|
+
"syn 2.0.117",
|
|
322
403
|
]
|
|
323
404
|
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "data-encoding"
|
|
407
|
+
version = "2.11.0"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
410
|
+
|
|
324
411
|
[[package]]
|
|
325
412
|
name = "deranged"
|
|
326
413
|
version = "0.5.8"
|
|
@@ -341,6 +428,17 @@ dependencies = [
|
|
|
341
428
|
"crypto-common",
|
|
342
429
|
]
|
|
343
430
|
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "displaydoc"
|
|
433
|
+
version = "0.2.7"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"proc-macro2",
|
|
438
|
+
"quote",
|
|
439
|
+
"syn 3.0.3",
|
|
440
|
+
]
|
|
441
|
+
|
|
344
442
|
[[package]]
|
|
345
443
|
name = "dyn-clone"
|
|
346
444
|
version = "1.0.20"
|
|
@@ -356,7 +454,7 @@ dependencies = [
|
|
|
356
454
|
"enum-ordinalize",
|
|
357
455
|
"proc-macro2",
|
|
358
456
|
"quote",
|
|
359
|
-
"syn",
|
|
457
|
+
"syn 2.0.117",
|
|
360
458
|
]
|
|
361
459
|
|
|
362
460
|
[[package]]
|
|
@@ -365,6 +463,27 @@ version = "1.15.0"
|
|
|
365
463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
464
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
367
465
|
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "email_address"
|
|
468
|
+
version = "0.2.9"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"serde",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "embedded-io"
|
|
477
|
+
version = "0.4.0"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "embedded-io"
|
|
483
|
+
version = "0.6.1"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
486
|
+
|
|
368
487
|
[[package]]
|
|
369
488
|
name = "ena"
|
|
370
489
|
version = "0.14.4"
|
|
@@ -391,7 +510,7 @@ checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631"
|
|
|
391
510
|
dependencies = [
|
|
392
511
|
"proc-macro2",
|
|
393
512
|
"quote",
|
|
394
|
-
"syn",
|
|
513
|
+
"syn 2.0.117",
|
|
395
514
|
]
|
|
396
515
|
|
|
397
516
|
[[package]]
|
|
@@ -410,6 +529,17 @@ dependencies = [
|
|
|
410
529
|
"windows-sys 0.61.2",
|
|
411
530
|
]
|
|
412
531
|
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "fancy-regex"
|
|
534
|
+
version = "0.18.0"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"bit-set",
|
|
539
|
+
"regex-automata",
|
|
540
|
+
"regex-syntax",
|
|
541
|
+
]
|
|
542
|
+
|
|
413
543
|
[[package]]
|
|
414
544
|
name = "fastrand"
|
|
415
545
|
version = "2.4.1"
|
|
@@ -428,6 +558,17 @@ version = "0.5.7"
|
|
|
428
558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
559
|
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
430
560
|
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "fluent-uri"
|
|
563
|
+
version = "0.4.1"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"borrow-or-share",
|
|
568
|
+
"ref-cast",
|
|
569
|
+
"serde",
|
|
570
|
+
]
|
|
571
|
+
|
|
431
572
|
[[package]]
|
|
432
573
|
name = "fnv"
|
|
433
574
|
version = "1.0.7"
|
|
@@ -440,6 +581,31 @@ version = "0.1.5"
|
|
|
440
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
582
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
442
583
|
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "foldhash"
|
|
586
|
+
version = "0.2.0"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "form_urlencoded"
|
|
592
|
+
version = "1.2.2"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"percent-encoding",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "fraction"
|
|
601
|
+
version = "0.15.4"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "e076045bb43dac435333ed5f04caf35c7463631d0dae2deb2638d94dd0a5b872"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"lazy_static",
|
|
606
|
+
"num",
|
|
607
|
+
]
|
|
608
|
+
|
|
443
609
|
[[package]]
|
|
444
610
|
name = "generic-array"
|
|
445
611
|
version = "0.14.7"
|
|
@@ -450,6 +616,20 @@ dependencies = [
|
|
|
450
616
|
"version_check",
|
|
451
617
|
]
|
|
452
618
|
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "getrandom"
|
|
621
|
+
version = "0.3.4"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"cfg-if",
|
|
626
|
+
"js-sys",
|
|
627
|
+
"libc",
|
|
628
|
+
"r-efi 5.3.0",
|
|
629
|
+
"wasip2",
|
|
630
|
+
"wasm-bindgen",
|
|
631
|
+
]
|
|
632
|
+
|
|
453
633
|
[[package]]
|
|
454
634
|
name = "getrandom"
|
|
455
635
|
version = "0.4.2"
|
|
@@ -458,52 +638,43 @@ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
|
458
638
|
dependencies = [
|
|
459
639
|
"cfg-if",
|
|
460
640
|
"libc",
|
|
461
|
-
"r-efi",
|
|
641
|
+
"r-efi 6.0.0",
|
|
642
|
+
"rand_core",
|
|
462
643
|
"wasip2",
|
|
463
644
|
"wasip3",
|
|
464
645
|
]
|
|
465
646
|
|
|
466
647
|
[[package]]
|
|
467
648
|
name = "glaz"
|
|
468
|
-
version = "
|
|
649
|
+
version = "1.1.0"
|
|
469
650
|
dependencies = [
|
|
470
651
|
"glaz-module",
|
|
652
|
+
"glaz-proto",
|
|
653
|
+
"glaz-roles",
|
|
471
654
|
"magnus",
|
|
655
|
+
"prost",
|
|
472
656
|
]
|
|
473
657
|
|
|
474
658
|
[[package]]
|
|
475
|
-
name = "glaz-
|
|
659
|
+
name = "glaz-govern"
|
|
476
660
|
version = "0.1.0"
|
|
477
|
-
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=
|
|
661
|
+
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
|
|
478
662
|
dependencies = [
|
|
479
|
-
"
|
|
480
|
-
"
|
|
481
|
-
"
|
|
482
|
-
"glaz-roles",
|
|
483
|
-
"glaz-storage",
|
|
663
|
+
"glaz-proto",
|
|
664
|
+
"regorus",
|
|
665
|
+
"serde",
|
|
484
666
|
"serde_json",
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
[[package]]
|
|
488
|
-
name = "glaz-graph"
|
|
489
|
-
version = "0.1.0"
|
|
490
|
-
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=e1100ed8d93b3db58627229b7c4e16e29905a3d0#e1100ed8d93b3db58627229b7c4e16e29905a3d0"
|
|
491
|
-
dependencies = [
|
|
492
|
-
"anyhow",
|
|
493
|
-
"glaz-storage",
|
|
494
|
-
"uuid",
|
|
667
|
+
"thiserror",
|
|
495
668
|
]
|
|
496
669
|
|
|
497
670
|
[[package]]
|
|
498
671
|
name = "glaz-module"
|
|
499
672
|
version = "0.1.0"
|
|
500
|
-
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=
|
|
673
|
+
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
|
|
501
674
|
dependencies = [
|
|
502
|
-
"glaz-
|
|
675
|
+
"glaz-govern",
|
|
503
676
|
"glaz-policy",
|
|
504
677
|
"glaz-proto",
|
|
505
|
-
"glaz-roles",
|
|
506
|
-
"glaz-storage",
|
|
507
678
|
"prost",
|
|
508
679
|
"serde_json",
|
|
509
680
|
"thiserror",
|
|
@@ -514,12 +685,11 @@ dependencies = [
|
|
|
514
685
|
[[package]]
|
|
515
686
|
name = "glaz-policy"
|
|
516
687
|
version = "0.1.0"
|
|
517
|
-
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=
|
|
688
|
+
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
|
|
518
689
|
dependencies = [
|
|
519
690
|
"async-trait",
|
|
520
691
|
"cedar-policy",
|
|
521
|
-
"glaz-
|
|
522
|
-
"glaz-storage",
|
|
692
|
+
"glaz-proto",
|
|
523
693
|
"serde_json",
|
|
524
694
|
"thiserror",
|
|
525
695
|
]
|
|
@@ -527,28 +697,22 @@ dependencies = [
|
|
|
527
697
|
[[package]]
|
|
528
698
|
name = "glaz-proto"
|
|
529
699
|
version = "0.1.0"
|
|
530
|
-
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=
|
|
700
|
+
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
|
|
531
701
|
dependencies = [
|
|
532
702
|
"prost",
|
|
533
703
|
"prost-build",
|
|
704
|
+
"prost-types",
|
|
534
705
|
"protoc-bin-vendored",
|
|
535
706
|
]
|
|
536
707
|
|
|
537
708
|
[[package]]
|
|
538
709
|
name = "glaz-roles"
|
|
539
710
|
version = "0.1.0"
|
|
540
|
-
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=
|
|
541
|
-
|
|
542
|
-
[[package]]
|
|
543
|
-
name = "glaz-storage"
|
|
544
|
-
version = "0.1.0"
|
|
545
|
-
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=e1100ed8d93b3db58627229b7c4e16e29905a3d0#e1100ed8d93b3db58627229b7c4e16e29905a3d0"
|
|
711
|
+
source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
|
|
546
712
|
dependencies = [
|
|
547
|
-
"
|
|
548
|
-
"chrono",
|
|
549
|
-
"glaz-roles",
|
|
713
|
+
"glaz-proto",
|
|
550
714
|
"serde",
|
|
551
|
-
"
|
|
715
|
+
"serde_yaml",
|
|
552
716
|
"thiserror",
|
|
553
717
|
"uuid",
|
|
554
718
|
]
|
|
@@ -559,6 +723,18 @@ version = "0.3.3"
|
|
|
559
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
724
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
561
725
|
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "globset"
|
|
728
|
+
version = "0.4.19"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "e47d37d2ae4464254884b60ab7071be2b876a9c35b696bd018ddcc76847309cd"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"aho-corasick",
|
|
733
|
+
"bstr",
|
|
734
|
+
"regex-automata",
|
|
735
|
+
"regex-syntax",
|
|
736
|
+
]
|
|
737
|
+
|
|
562
738
|
[[package]]
|
|
563
739
|
name = "hashbrown"
|
|
564
740
|
version = "0.12.3"
|
|
@@ -571,7 +747,7 @@ version = "0.15.5"
|
|
|
571
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
748
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
573
749
|
dependencies = [
|
|
574
|
-
"foldhash",
|
|
750
|
+
"foldhash 0.1.5",
|
|
575
751
|
]
|
|
576
752
|
|
|
577
753
|
[[package]]
|
|
@@ -580,6 +756,17 @@ version = "0.16.1"
|
|
|
580
756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
757
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
582
758
|
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "hashbrown"
|
|
761
|
+
version = "0.17.1"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"allocator-api2",
|
|
766
|
+
"equivalent",
|
|
767
|
+
"foldhash 0.2.0",
|
|
768
|
+
]
|
|
769
|
+
|
|
583
770
|
[[package]]
|
|
584
771
|
name = "heck"
|
|
585
772
|
version = "0.5.0"
|
|
@@ -616,6 +803,88 @@ dependencies = [
|
|
|
616
803
|
"cc",
|
|
617
804
|
]
|
|
618
805
|
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "icu_collections"
|
|
808
|
+
version = "2.2.0"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"displaydoc",
|
|
813
|
+
"potential_utf",
|
|
814
|
+
"utf8_iter",
|
|
815
|
+
"yoke",
|
|
816
|
+
"zerofrom",
|
|
817
|
+
"zerovec",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "icu_locale_core"
|
|
822
|
+
version = "2.2.0"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"displaydoc",
|
|
827
|
+
"litemap",
|
|
828
|
+
"tinystr",
|
|
829
|
+
"writeable",
|
|
830
|
+
"zerovec",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "icu_normalizer"
|
|
835
|
+
version = "2.2.0"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"icu_collections",
|
|
840
|
+
"icu_normalizer_data",
|
|
841
|
+
"icu_properties",
|
|
842
|
+
"icu_provider",
|
|
843
|
+
"smallvec",
|
|
844
|
+
"zerovec",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "icu_normalizer_data"
|
|
849
|
+
version = "2.2.0"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "icu_properties"
|
|
855
|
+
version = "2.2.0"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
858
|
+
dependencies = [
|
|
859
|
+
"icu_collections",
|
|
860
|
+
"icu_locale_core",
|
|
861
|
+
"icu_properties_data",
|
|
862
|
+
"icu_provider",
|
|
863
|
+
"zerotrie",
|
|
864
|
+
"zerovec",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "icu_properties_data"
|
|
869
|
+
version = "2.2.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "icu_provider"
|
|
875
|
+
version = "2.2.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"displaydoc",
|
|
880
|
+
"icu_locale_core",
|
|
881
|
+
"writeable",
|
|
882
|
+
"yoke",
|
|
883
|
+
"zerofrom",
|
|
884
|
+
"zerotrie",
|
|
885
|
+
"zerovec",
|
|
886
|
+
]
|
|
887
|
+
|
|
619
888
|
[[package]]
|
|
620
889
|
name = "id-arena"
|
|
621
890
|
version = "2.3.0"
|
|
@@ -628,6 +897,27 @@ version = "1.0.1"
|
|
|
628
897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
898
|
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
630
899
|
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "idna"
|
|
902
|
+
version = "1.1.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"idna_adapter",
|
|
907
|
+
"smallvec",
|
|
908
|
+
"utf8_iter",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "idna_adapter"
|
|
913
|
+
version = "1.2.2"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"icu_normalizer",
|
|
918
|
+
"icu_properties",
|
|
919
|
+
]
|
|
920
|
+
|
|
631
921
|
[[package]]
|
|
632
922
|
name = "indexmap"
|
|
633
923
|
version = "1.9.3"
|
|
@@ -651,6 +941,12 @@ dependencies = [
|
|
|
651
941
|
"serde_core",
|
|
652
942
|
]
|
|
653
943
|
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "ipnet"
|
|
946
|
+
version = "2.12.0"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
949
|
+
|
|
654
950
|
[[package]]
|
|
655
951
|
name = "itertools"
|
|
656
952
|
version = "0.13.0"
|
|
@@ -685,13 +981,49 @@ dependencies = [
|
|
|
685
981
|
"wasm-bindgen",
|
|
686
982
|
]
|
|
687
983
|
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "jsonschema"
|
|
986
|
+
version = "0.47.0"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "281c43ff06dcb331e9356d30e38853d559ce3d0a3f693e0b0e102667dec14fb1"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"ahash",
|
|
991
|
+
"bytecount",
|
|
992
|
+
"data-encoding",
|
|
993
|
+
"email_address",
|
|
994
|
+
"fancy-regex",
|
|
995
|
+
"fraction",
|
|
996
|
+
"getrandom 0.3.4",
|
|
997
|
+
"idna",
|
|
998
|
+
"itoa",
|
|
999
|
+
"jsonschema-regex",
|
|
1000
|
+
"num-cmp",
|
|
1001
|
+
"num-traits",
|
|
1002
|
+
"percent-encoding",
|
|
1003
|
+
"referencing",
|
|
1004
|
+
"regex",
|
|
1005
|
+
"serde",
|
|
1006
|
+
"serde_json",
|
|
1007
|
+
"unicode-general-category",
|
|
1008
|
+
"uuid-simd",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "jsonschema-regex"
|
|
1013
|
+
version = "0.47.0"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "ee0b351864e7ffbc5db9273daf7fa1b4d5177b0946713d667ca571b83c0b4045"
|
|
1016
|
+
dependencies = [
|
|
1017
|
+
"regex-syntax",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
688
1020
|
[[package]]
|
|
689
1021
|
name = "keccak"
|
|
690
1022
|
version = "0.1.6"
|
|
691
1023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
1024
|
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
|
693
1025
|
dependencies = [
|
|
694
|
-
"cpufeatures",
|
|
1026
|
+
"cpufeatures 0.2.17",
|
|
695
1027
|
]
|
|
696
1028
|
|
|
697
1029
|
[[package]]
|
|
@@ -705,7 +1037,7 @@ dependencies = [
|
|
|
705
1037
|
"ena",
|
|
706
1038
|
"itertools 0.14.0",
|
|
707
1039
|
"lalrpop-util",
|
|
708
|
-
"petgraph",
|
|
1040
|
+
"petgraph 0.7.1",
|
|
709
1041
|
"pico-args",
|
|
710
1042
|
"regex",
|
|
711
1043
|
"regex-syntax",
|
|
@@ -778,6 +1110,12 @@ version = "0.12.1"
|
|
|
778
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
1111
|
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
780
1112
|
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "litemap"
|
|
1115
|
+
version = "0.8.2"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1118
|
+
|
|
781
1119
|
[[package]]
|
|
782
1120
|
name = "lock_api"
|
|
783
1121
|
version = "0.4.14"
|
|
@@ -813,7 +1151,7 @@ dependencies = [
|
|
|
813
1151
|
"quote",
|
|
814
1152
|
"regex-automata",
|
|
815
1153
|
"regex-syntax",
|
|
816
|
-
"syn",
|
|
1154
|
+
"syn 2.0.117",
|
|
817
1155
|
]
|
|
818
1156
|
|
|
819
1157
|
[[package]]
|
|
@@ -825,6 +1163,12 @@ dependencies = [
|
|
|
825
1163
|
"logos-codegen",
|
|
826
1164
|
]
|
|
827
1165
|
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "lru"
|
|
1168
|
+
version = "0.18.1"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "0b6180140927ee907000b0aa540091f6ea512ead4447c92b8fc35bc72788a5a6"
|
|
1171
|
+
|
|
828
1172
|
[[package]]
|
|
829
1173
|
name = "magnus"
|
|
830
1174
|
version = "0.8.2"
|
|
@@ -845,7 +1189,7 @@ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
|
845
1189
|
dependencies = [
|
|
846
1190
|
"proc-macro2",
|
|
847
1191
|
"quote",
|
|
848
|
-
"syn",
|
|
1192
|
+
"syn 2.0.117",
|
|
849
1193
|
]
|
|
850
1194
|
|
|
851
1195
|
[[package]]
|
|
@@ -854,6 +1198,12 @@ version = "2.8.0"
|
|
|
854
1198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
1199
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
856
1200
|
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "micromap"
|
|
1203
|
+
version = "0.3.0"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "c2a86d3146ed3995b5913c414f6664344b9617457320782e64f0bb44afd49d74"
|
|
1206
|
+
|
|
857
1207
|
[[package]]
|
|
858
1208
|
name = "miette"
|
|
859
1209
|
version = "7.6.0"
|
|
@@ -874,7 +1224,7 @@ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
|
874
1224
|
dependencies = [
|
|
875
1225
|
"proc-macro2",
|
|
876
1226
|
"quote",
|
|
877
|
-
"syn",
|
|
1227
|
+
"syn 2.0.117",
|
|
878
1228
|
]
|
|
879
1229
|
|
|
880
1230
|
[[package]]
|
|
@@ -894,6 +1244,15 @@ dependencies = [
|
|
|
894
1244
|
"windows-sys 0.61.2",
|
|
895
1245
|
]
|
|
896
1246
|
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "msvc_spectre_libs"
|
|
1249
|
+
version = "0.1.3"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "29e871a9861f3664f18b7e04e9301d4edd55090c2dadb4b1c602e26ab32b1f5b"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"cc",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
897
1256
|
[[package]]
|
|
898
1257
|
name = "multimap"
|
|
899
1258
|
version = "0.10.1"
|
|
@@ -925,12 +1284,91 @@ dependencies = [
|
|
|
925
1284
|
"serde",
|
|
926
1285
|
]
|
|
927
1286
|
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "num"
|
|
1289
|
+
version = "0.4.3"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"num-bigint 0.4.8",
|
|
1294
|
+
"num-complex",
|
|
1295
|
+
"num-integer",
|
|
1296
|
+
"num-iter",
|
|
1297
|
+
"num-rational",
|
|
1298
|
+
"num-traits",
|
|
1299
|
+
]
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "num-bigint"
|
|
1303
|
+
version = "0.4.8"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"num-integer",
|
|
1308
|
+
"num-traits",
|
|
1309
|
+
]
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "num-bigint"
|
|
1313
|
+
version = "0.5.1"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"num-integer",
|
|
1318
|
+
"num-traits",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "num-cmp"
|
|
1323
|
+
version = "0.1.0"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "num-complex"
|
|
1329
|
+
version = "0.4.6"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"num-traits",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
928
1336
|
[[package]]
|
|
929
1337
|
name = "num-conv"
|
|
930
1338
|
version = "0.2.1"
|
|
931
1339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
1340
|
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
|
933
1341
|
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "num-integer"
|
|
1344
|
+
version = "0.1.46"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1347
|
+
dependencies = [
|
|
1348
|
+
"num-traits",
|
|
1349
|
+
]
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "num-iter"
|
|
1353
|
+
version = "0.1.46"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"num-integer",
|
|
1358
|
+
"num-traits",
|
|
1359
|
+
]
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "num-rational"
|
|
1363
|
+
version = "0.4.2"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1366
|
+
dependencies = [
|
|
1367
|
+
"num-bigint 0.4.8",
|
|
1368
|
+
"num-integer",
|
|
1369
|
+
"num-traits",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
934
1372
|
[[package]]
|
|
935
1373
|
name = "num-traits"
|
|
936
1374
|
version = "0.2.19"
|
|
@@ -955,6 +1393,12 @@ version = "1.21.4"
|
|
|
955
1393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
1394
|
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
957
1395
|
|
|
1396
|
+
[[package]]
|
|
1397
|
+
name = "outref"
|
|
1398
|
+
version = "0.5.2"
|
|
1399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
1401
|
+
|
|
958
1402
|
[[package]]
|
|
959
1403
|
name = "parking_lot"
|
|
960
1404
|
version = "0.12.5"
|
|
@@ -978,6 +1422,12 @@ dependencies = [
|
|
|
978
1422
|
"windows-link",
|
|
979
1423
|
]
|
|
980
1424
|
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "percent-encoding"
|
|
1427
|
+
version = "2.3.2"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1430
|
+
|
|
981
1431
|
[[package]]
|
|
982
1432
|
name = "petgraph"
|
|
983
1433
|
version = "0.7.1"
|
|
@@ -988,6 +1438,26 @@ dependencies = [
|
|
|
988
1438
|
"indexmap 2.13.1",
|
|
989
1439
|
]
|
|
990
1440
|
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "petgraph"
|
|
1443
|
+
version = "0.8.3"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"fixedbitset",
|
|
1448
|
+
"hashbrown 0.15.5",
|
|
1449
|
+
"indexmap 2.13.1",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "phf"
|
|
1454
|
+
version = "0.12.1"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"phf_shared 0.12.1",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
991
1461
|
[[package]]
|
|
992
1462
|
name = "phf_shared"
|
|
993
1463
|
version = "0.11.3"
|
|
@@ -997,6 +1467,15 @@ dependencies = [
|
|
|
997
1467
|
"siphasher",
|
|
998
1468
|
]
|
|
999
1469
|
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "phf_shared"
|
|
1472
|
+
version = "0.12.1"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"siphasher",
|
|
1477
|
+
]
|
|
1478
|
+
|
|
1000
1479
|
[[package]]
|
|
1001
1480
|
name = "pico-args"
|
|
1002
1481
|
version = "0.5.0"
|
|
@@ -1009,6 +1488,27 @@ version = "0.2.17"
|
|
|
1009
1488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
1489
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1011
1490
|
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "postcard"
|
|
1493
|
+
version = "1.1.3"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"cobs",
|
|
1498
|
+
"embedded-io 0.4.0",
|
|
1499
|
+
"embedded-io 0.6.1",
|
|
1500
|
+
"serde",
|
|
1501
|
+
]
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "potential_utf"
|
|
1505
|
+
version = "0.1.5"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"zerovec",
|
|
1510
|
+
]
|
|
1511
|
+
|
|
1012
1512
|
[[package]]
|
|
1013
1513
|
name = "powerfmt"
|
|
1014
1514
|
version = "0.2.0"
|
|
@@ -1039,7 +1539,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1039
1539
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1040
1540
|
dependencies = [
|
|
1041
1541
|
"proc-macro2",
|
|
1042
|
-
"syn",
|
|
1542
|
+
"syn 2.0.117",
|
|
1043
1543
|
]
|
|
1044
1544
|
|
|
1045
1545
|
[[package]]
|
|
@@ -1053,9 +1553,9 @@ dependencies = [
|
|
|
1053
1553
|
|
|
1054
1554
|
[[package]]
|
|
1055
1555
|
name = "prost"
|
|
1056
|
-
version = "0.
|
|
1556
|
+
version = "0.14.4"
|
|
1057
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
-
checksum = "
|
|
1558
|
+
checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
|
|
1059
1559
|
dependencies = [
|
|
1060
1560
|
"bytes",
|
|
1061
1561
|
"prost-derive",
|
|
@@ -1063,42 +1563,41 @@ dependencies = [
|
|
|
1063
1563
|
|
|
1064
1564
|
[[package]]
|
|
1065
1565
|
name = "prost-build"
|
|
1066
|
-
version = "0.
|
|
1566
|
+
version = "0.14.4"
|
|
1067
1567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
-
checksum = "
|
|
1568
|
+
checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042"
|
|
1069
1569
|
dependencies = [
|
|
1070
1570
|
"heck",
|
|
1071
1571
|
"itertools 0.14.0",
|
|
1072
1572
|
"log",
|
|
1073
1573
|
"multimap",
|
|
1074
|
-
"
|
|
1075
|
-
"petgraph",
|
|
1574
|
+
"petgraph 0.8.3",
|
|
1076
1575
|
"prettyplease",
|
|
1077
1576
|
"prost",
|
|
1078
1577
|
"prost-types",
|
|
1079
1578
|
"regex",
|
|
1080
|
-
"syn",
|
|
1579
|
+
"syn 2.0.117",
|
|
1081
1580
|
"tempfile",
|
|
1082
1581
|
]
|
|
1083
1582
|
|
|
1084
1583
|
[[package]]
|
|
1085
1584
|
name = "prost-derive"
|
|
1086
|
-
version = "0.
|
|
1585
|
+
version = "0.14.4"
|
|
1087
1586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
-
checksum = "
|
|
1587
|
+
checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
|
|
1089
1588
|
dependencies = [
|
|
1090
1589
|
"anyhow",
|
|
1091
1590
|
"itertools 0.14.0",
|
|
1092
1591
|
"proc-macro2",
|
|
1093
1592
|
"quote",
|
|
1094
|
-
"syn",
|
|
1593
|
+
"syn 2.0.117",
|
|
1095
1594
|
]
|
|
1096
1595
|
|
|
1097
1596
|
[[package]]
|
|
1098
1597
|
name = "prost-types"
|
|
1099
|
-
version = "0.
|
|
1598
|
+
version = "0.14.4"
|
|
1100
1599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
-
checksum = "
|
|
1600
|
+
checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
|
|
1102
1601
|
dependencies = [
|
|
1103
1602
|
"prost",
|
|
1104
1603
|
]
|
|
@@ -1186,12 +1685,35 @@ dependencies = [
|
|
|
1186
1685
|
"proc-macro2",
|
|
1187
1686
|
]
|
|
1188
1687
|
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "r-efi"
|
|
1690
|
+
version = "5.3.0"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1693
|
+
|
|
1189
1694
|
[[package]]
|
|
1190
1695
|
name = "r-efi"
|
|
1191
1696
|
version = "6.0.0"
|
|
1192
1697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
1698
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1194
1699
|
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "rand"
|
|
1702
|
+
version = "0.10.2"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"chacha20",
|
|
1707
|
+
"getrandom 0.4.2",
|
|
1708
|
+
"rand_core",
|
|
1709
|
+
]
|
|
1710
|
+
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "rand_core"
|
|
1713
|
+
version = "0.10.1"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1716
|
+
|
|
1195
1717
|
[[package]]
|
|
1196
1718
|
name = "rb-sys"
|
|
1197
1719
|
version = "0.9.128"
|
|
@@ -1213,7 +1735,7 @@ dependencies = [
|
|
|
1213
1735
|
"quote",
|
|
1214
1736
|
"regex",
|
|
1215
1737
|
"shell-words",
|
|
1216
|
-
"syn",
|
|
1738
|
+
"syn 2.0.117",
|
|
1217
1739
|
]
|
|
1218
1740
|
|
|
1219
1741
|
[[package]]
|
|
@@ -1248,7 +1770,24 @@ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
|
1248
1770
|
dependencies = [
|
|
1249
1771
|
"proc-macro2",
|
|
1250
1772
|
"quote",
|
|
1251
|
-
"syn",
|
|
1773
|
+
"syn 2.0.117",
|
|
1774
|
+
]
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "referencing"
|
|
1778
|
+
version = "0.47.0"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "348e860aeb0b7bd035778fd11dd9cd5290d32e4aed3b8f2274a00287a9fd362b"
|
|
1781
|
+
dependencies = [
|
|
1782
|
+
"ahash",
|
|
1783
|
+
"fluent-uri",
|
|
1784
|
+
"getrandom 0.3.4",
|
|
1785
|
+
"hashbrown 0.17.1",
|
|
1786
|
+
"itoa",
|
|
1787
|
+
"micromap",
|
|
1788
|
+
"parking_lot",
|
|
1789
|
+
"percent-encoding",
|
|
1790
|
+
"serde_json",
|
|
1252
1791
|
]
|
|
1253
1792
|
|
|
1254
1793
|
[[package]]
|
|
@@ -1280,6 +1819,39 @@ version = "0.8.10"
|
|
|
1280
1819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
1820
|
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1282
1821
|
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "regorus"
|
|
1824
|
+
version = "0.11.0"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "3cc4dc91481b1d4001ba7f2e81f7faf674142e0ac36d37d79e5f02764d06571e"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"anyhow",
|
|
1829
|
+
"chrono",
|
|
1830
|
+
"chrono-tz",
|
|
1831
|
+
"data-encoding",
|
|
1832
|
+
"globset",
|
|
1833
|
+
"indexmap 2.13.1",
|
|
1834
|
+
"ipnet",
|
|
1835
|
+
"jsonschema",
|
|
1836
|
+
"lazy_static",
|
|
1837
|
+
"lru",
|
|
1838
|
+
"msvc_spectre_libs",
|
|
1839
|
+
"num-bigint 0.5.1",
|
|
1840
|
+
"num-traits",
|
|
1841
|
+
"parking_lot",
|
|
1842
|
+
"postcard",
|
|
1843
|
+
"rand",
|
|
1844
|
+
"regex",
|
|
1845
|
+
"semver",
|
|
1846
|
+
"serde",
|
|
1847
|
+
"serde_json",
|
|
1848
|
+
"serde_yaml",
|
|
1849
|
+
"spin",
|
|
1850
|
+
"thiserror",
|
|
1851
|
+
"url",
|
|
1852
|
+
"uuid",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1283
1855
|
[[package]]
|
|
1284
1856
|
name = "rustc-hash"
|
|
1285
1857
|
version = "2.1.2"
|
|
@@ -1311,6 +1883,12 @@ version = "1.0.22"
|
|
|
1311
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
1884
|
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1313
1885
|
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "ryu"
|
|
1888
|
+
version = "1.0.23"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1891
|
+
|
|
1314
1892
|
[[package]]
|
|
1315
1893
|
name = "same-file"
|
|
1316
1894
|
version = "1.0.6"
|
|
@@ -1389,14 +1967,14 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
|
1389
1967
|
dependencies = [
|
|
1390
1968
|
"proc-macro2",
|
|
1391
1969
|
"quote",
|
|
1392
|
-
"syn",
|
|
1970
|
+
"syn 2.0.117",
|
|
1393
1971
|
]
|
|
1394
1972
|
|
|
1395
1973
|
[[package]]
|
|
1396
1974
|
name = "serde_json"
|
|
1397
|
-
version = "1.0.
|
|
1975
|
+
version = "1.0.151"
|
|
1398
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
-
checksum = "
|
|
1977
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1400
1978
|
dependencies = [
|
|
1401
1979
|
"indexmap 2.13.1",
|
|
1402
1980
|
"itoa",
|
|
@@ -1434,7 +2012,20 @@ dependencies = [
|
|
|
1434
2012
|
"darling",
|
|
1435
2013
|
"proc-macro2",
|
|
1436
2014
|
"quote",
|
|
1437
|
-
"syn",
|
|
2015
|
+
"syn 2.0.117",
|
|
2016
|
+
]
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "serde_yaml"
|
|
2020
|
+
version = "0.9.34+deprecated"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2023
|
+
dependencies = [
|
|
2024
|
+
"indexmap 2.13.1",
|
|
2025
|
+
"itoa",
|
|
2026
|
+
"ryu",
|
|
2027
|
+
"serde",
|
|
2028
|
+
"unsafe-libyaml",
|
|
1438
2029
|
]
|
|
1439
2030
|
|
|
1440
2031
|
[[package]]
|
|
@@ -1501,6 +2092,18 @@ dependencies = [
|
|
|
1501
2092
|
"windows-sys 0.61.2",
|
|
1502
2093
|
]
|
|
1503
2094
|
|
|
2095
|
+
[[package]]
|
|
2096
|
+
name = "spin"
|
|
2097
|
+
version = "0.12.2"
|
|
2098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
+
checksum = "8abadc99fd9c7bbb7d0ca2b31d72a067d0c0dcd7aad25ab8cac71ba91417694b"
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "stable_deref_trait"
|
|
2103
|
+
version = "1.2.1"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2106
|
+
|
|
1504
2107
|
[[package]]
|
|
1505
2108
|
name = "stacker"
|
|
1506
2109
|
version = "0.1.23"
|
|
@@ -1522,7 +2125,7 @@ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
|
|
1522
2125
|
dependencies = [
|
|
1523
2126
|
"new_debug_unreachable",
|
|
1524
2127
|
"parking_lot",
|
|
1525
|
-
"phf_shared",
|
|
2128
|
+
"phf_shared 0.11.3",
|
|
1526
2129
|
"precomputed-hash",
|
|
1527
2130
|
]
|
|
1528
2131
|
|
|
@@ -1543,6 +2146,28 @@ dependencies = [
|
|
|
1543
2146
|
"unicode-ident",
|
|
1544
2147
|
]
|
|
1545
2148
|
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "syn"
|
|
2151
|
+
version = "3.0.3"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
2154
|
+
dependencies = [
|
|
2155
|
+
"proc-macro2",
|
|
2156
|
+
"quote",
|
|
2157
|
+
"unicode-ident",
|
|
2158
|
+
]
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "synstructure"
|
|
2162
|
+
version = "0.13.2"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2165
|
+
dependencies = [
|
|
2166
|
+
"proc-macro2",
|
|
2167
|
+
"quote",
|
|
2168
|
+
"syn 2.0.117",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
1546
2171
|
[[package]]
|
|
1547
2172
|
name = "tempfile"
|
|
1548
2173
|
version = "3.27.0"
|
|
@@ -1550,7 +2175,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1550
2175
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1551
2176
|
dependencies = [
|
|
1552
2177
|
"fastrand",
|
|
1553
|
-
"getrandom",
|
|
1554
2178
|
"once_cell",
|
|
1555
2179
|
"rustix",
|
|
1556
2180
|
"windows-sys 0.61.2",
|
|
@@ -1582,7 +2206,7 @@ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
|
1582
2206
|
dependencies = [
|
|
1583
2207
|
"proc-macro2",
|
|
1584
2208
|
"quote",
|
|
1585
|
-
"syn",
|
|
2209
|
+
"syn 2.0.117",
|
|
1586
2210
|
]
|
|
1587
2211
|
|
|
1588
2212
|
[[package]]
|
|
@@ -1616,6 +2240,16 @@ dependencies = [
|
|
|
1616
2240
|
"time-core",
|
|
1617
2241
|
]
|
|
1618
2242
|
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "tinystr"
|
|
2245
|
+
version = "0.8.3"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"displaydoc",
|
|
2250
|
+
"zerovec",
|
|
2251
|
+
]
|
|
2252
|
+
|
|
1619
2253
|
[[package]]
|
|
1620
2254
|
name = "tinyvec"
|
|
1621
2255
|
version = "1.11.0"
|
|
@@ -1656,7 +2290,7 @@ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
|
1656
2290
|
dependencies = [
|
|
1657
2291
|
"proc-macro2",
|
|
1658
2292
|
"quote",
|
|
1659
|
-
"syn",
|
|
2293
|
+
"syn 2.0.117",
|
|
1660
2294
|
]
|
|
1661
2295
|
|
|
1662
2296
|
[[package]]
|
|
@@ -1671,6 +2305,12 @@ version = "1.19.0"
|
|
|
1671
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
2306
|
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1673
2307
|
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "unicode-general-category"
|
|
2310
|
+
version = "1.1.0"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
|
|
2313
|
+
|
|
1674
2314
|
[[package]]
|
|
1675
2315
|
name = "unicode-ident"
|
|
1676
2316
|
version = "1.0.24"
|
|
@@ -1720,24 +2360,65 @@ version = "0.2.6"
|
|
|
1720
2360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
2361
|
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1722
2362
|
|
|
2363
|
+
[[package]]
|
|
2364
|
+
name = "unsafe-libyaml"
|
|
2365
|
+
version = "0.2.11"
|
|
2366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
2368
|
+
|
|
2369
|
+
[[package]]
|
|
2370
|
+
name = "url"
|
|
2371
|
+
version = "2.5.8"
|
|
2372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2373
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2374
|
+
dependencies = [
|
|
2375
|
+
"form_urlencoded",
|
|
2376
|
+
"idna",
|
|
2377
|
+
"percent-encoding",
|
|
2378
|
+
"serde",
|
|
2379
|
+
]
|
|
2380
|
+
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "utf8_iter"
|
|
2383
|
+
version = "1.0.4"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2386
|
+
|
|
1723
2387
|
[[package]]
|
|
1724
2388
|
name = "uuid"
|
|
1725
2389
|
version = "1.23.0"
|
|
1726
2390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
2391
|
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
1728
2392
|
dependencies = [
|
|
1729
|
-
"getrandom",
|
|
2393
|
+
"getrandom 0.4.2",
|
|
1730
2394
|
"js-sys",
|
|
2395
|
+
"rand",
|
|
1731
2396
|
"serde_core",
|
|
1732
2397
|
"wasm-bindgen",
|
|
1733
2398
|
]
|
|
1734
2399
|
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "uuid-simd"
|
|
2402
|
+
version = "0.8.0"
|
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
+
checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
|
|
2405
|
+
dependencies = [
|
|
2406
|
+
"outref",
|
|
2407
|
+
"vsimd",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
1735
2410
|
[[package]]
|
|
1736
2411
|
name = "version_check"
|
|
1737
2412
|
version = "0.9.5"
|
|
1738
2413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
2414
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1740
2415
|
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "vsimd"
|
|
2418
|
+
version = "0.8.0"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
2421
|
+
|
|
1741
2422
|
[[package]]
|
|
1742
2423
|
name = "walkdir"
|
|
1743
2424
|
version = "2.5.0"
|
|
@@ -1804,7 +2485,7 @@ dependencies = [
|
|
|
1804
2485
|
"bumpalo",
|
|
1805
2486
|
"proc-macro2",
|
|
1806
2487
|
"quote",
|
|
1807
|
-
"syn",
|
|
2488
|
+
"syn 2.0.117",
|
|
1808
2489
|
"wasm-bindgen-shared",
|
|
1809
2490
|
]
|
|
1810
2491
|
|
|
@@ -1881,7 +2562,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
1881
2562
|
dependencies = [
|
|
1882
2563
|
"proc-macro2",
|
|
1883
2564
|
"quote",
|
|
1884
|
-
"syn",
|
|
2565
|
+
"syn 2.0.117",
|
|
1885
2566
|
]
|
|
1886
2567
|
|
|
1887
2568
|
[[package]]
|
|
@@ -1892,7 +2573,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
1892
2573
|
dependencies = [
|
|
1893
2574
|
"proc-macro2",
|
|
1894
2575
|
"quote",
|
|
1895
|
-
"syn",
|
|
2576
|
+
"syn 2.0.117",
|
|
1896
2577
|
]
|
|
1897
2578
|
|
|
1898
2579
|
[[package]]
|
|
@@ -2031,7 +2712,7 @@ dependencies = [
|
|
|
2031
2712
|
"heck",
|
|
2032
2713
|
"indexmap 2.13.1",
|
|
2033
2714
|
"prettyplease",
|
|
2034
|
-
"syn",
|
|
2715
|
+
"syn 2.0.117",
|
|
2035
2716
|
"wasm-metadata",
|
|
2036
2717
|
"wit-bindgen-core",
|
|
2037
2718
|
"wit-component",
|
|
@@ -2047,7 +2728,7 @@ dependencies = [
|
|
|
2047
2728
|
"prettyplease",
|
|
2048
2729
|
"proc-macro2",
|
|
2049
2730
|
"quote",
|
|
2050
|
-
"syn",
|
|
2731
|
+
"syn 2.0.117",
|
|
2051
2732
|
"wit-bindgen-core",
|
|
2052
2733
|
"wit-bindgen-rust",
|
|
2053
2734
|
]
|
|
@@ -2089,6 +2770,109 @@ dependencies = [
|
|
|
2089
2770
|
"wasmparser",
|
|
2090
2771
|
]
|
|
2091
2772
|
|
|
2773
|
+
[[package]]
|
|
2774
|
+
name = "writeable"
|
|
2775
|
+
version = "0.6.3"
|
|
2776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2777
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2778
|
+
|
|
2779
|
+
[[package]]
|
|
2780
|
+
name = "yoke"
|
|
2781
|
+
version = "0.8.3"
|
|
2782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2784
|
+
dependencies = [
|
|
2785
|
+
"stable_deref_trait",
|
|
2786
|
+
"yoke-derive",
|
|
2787
|
+
"zerofrom",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "yoke-derive"
|
|
2792
|
+
version = "0.8.2"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"proc-macro2",
|
|
2797
|
+
"quote",
|
|
2798
|
+
"syn 2.0.117",
|
|
2799
|
+
"synstructure",
|
|
2800
|
+
]
|
|
2801
|
+
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "zerocopy"
|
|
2804
|
+
version = "0.8.55"
|
|
2805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
+
checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
|
|
2807
|
+
dependencies = [
|
|
2808
|
+
"zerocopy-derive",
|
|
2809
|
+
]
|
|
2810
|
+
|
|
2811
|
+
[[package]]
|
|
2812
|
+
name = "zerocopy-derive"
|
|
2813
|
+
version = "0.8.55"
|
|
2814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2815
|
+
checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
|
|
2816
|
+
dependencies = [
|
|
2817
|
+
"proc-macro2",
|
|
2818
|
+
"quote",
|
|
2819
|
+
"syn 2.0.117",
|
|
2820
|
+
]
|
|
2821
|
+
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "zerofrom"
|
|
2824
|
+
version = "0.1.8"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2827
|
+
dependencies = [
|
|
2828
|
+
"zerofrom-derive",
|
|
2829
|
+
]
|
|
2830
|
+
|
|
2831
|
+
[[package]]
|
|
2832
|
+
name = "zerofrom-derive"
|
|
2833
|
+
version = "0.1.7"
|
|
2834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2835
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2836
|
+
dependencies = [
|
|
2837
|
+
"proc-macro2",
|
|
2838
|
+
"quote",
|
|
2839
|
+
"syn 2.0.117",
|
|
2840
|
+
"synstructure",
|
|
2841
|
+
]
|
|
2842
|
+
|
|
2843
|
+
[[package]]
|
|
2844
|
+
name = "zerotrie"
|
|
2845
|
+
version = "0.2.4"
|
|
2846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2847
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2848
|
+
dependencies = [
|
|
2849
|
+
"displaydoc",
|
|
2850
|
+
"yoke",
|
|
2851
|
+
"zerofrom",
|
|
2852
|
+
]
|
|
2853
|
+
|
|
2854
|
+
[[package]]
|
|
2855
|
+
name = "zerovec"
|
|
2856
|
+
version = "0.11.6"
|
|
2857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2858
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2859
|
+
dependencies = [
|
|
2860
|
+
"yoke",
|
|
2861
|
+
"zerofrom",
|
|
2862
|
+
"zerovec-derive",
|
|
2863
|
+
]
|
|
2864
|
+
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "zerovec-derive"
|
|
2867
|
+
version = "0.11.3"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2870
|
+
dependencies = [
|
|
2871
|
+
"proc-macro2",
|
|
2872
|
+
"quote",
|
|
2873
|
+
"syn 2.0.117",
|
|
2874
|
+
]
|
|
2875
|
+
|
|
2092
2876
|
[[package]]
|
|
2093
2877
|
name = "zmij"
|
|
2094
2878
|
version = "1.0.21"
|