gitlab-glaz 1.2.0 → 2.0.0

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.
data/Cargo.lock CHANGED
@@ -2,6 +2,12 @@
2
2
  # It is not intended for manual editing.
3
3
  version = 4
4
4
 
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
5
11
  [[package]]
6
12
  name = "ahash"
7
13
  version = "0.8.12"
@@ -93,6 +99,12 @@ version = "0.22.1"
93
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
94
100
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
95
101
 
102
+ [[package]]
103
+ name = "base64"
104
+ version = "0.23.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
107
+
96
108
  [[package]]
97
109
  name = "bindgen"
98
110
  version = "0.72.1"
@@ -334,6 +346,32 @@ dependencies = [
334
346
  "thiserror",
335
347
  ]
336
348
 
349
+ [[package]]
350
+ name = "combine"
351
+ version = "4.6.8"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
354
+ dependencies = [
355
+ "bytes",
356
+ "memchr",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "convert_case"
361
+ version = "0.4.0"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
364
+
365
+ [[package]]
366
+ name = "core-foundation"
367
+ version = "0.10.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
370
+ dependencies = [
371
+ "core-foundation-sys",
372
+ "libc",
373
+ ]
374
+
337
375
  [[package]]
338
376
  name = "core-foundation-sys"
339
377
  version = "0.8.7"
@@ -358,6 +396,15 @@ dependencies = [
358
396
  "libc",
359
397
  ]
360
398
 
399
+ [[package]]
400
+ name = "crc32fast"
401
+ version = "1.5.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
404
+ dependencies = [
405
+ "cfg-if",
406
+ ]
407
+
361
408
  [[package]]
362
409
  name = "crypto-common"
363
410
  version = "0.1.7"
@@ -531,9 +578,9 @@ dependencies = [
531
578
 
532
579
  [[package]]
533
580
  name = "fancy-regex"
534
- version = "0.18.0"
581
+ version = "0.19.0"
535
582
  source = "registry+https://github.com/rust-lang/crates.io-index"
536
- checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
583
+ checksum = "476de73bddf2ef8490aa4ee8f1cf40b430bf1d56c48c22080e5186952cd580e6"
537
584
  dependencies = [
538
585
  "bit-set",
539
586
  "regex-automata",
@@ -558,6 +605,17 @@ version = "0.5.7"
558
605
  source = "registry+https://github.com/rust-lang/crates.io-index"
559
606
  checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
560
607
 
608
+ [[package]]
609
+ name = "flate2"
610
+ version = "1.1.10"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
613
+ dependencies = [
614
+ "crc32fast",
615
+ "miniz_oxide",
616
+ "zlib-rs",
617
+ ]
618
+
561
619
  [[package]]
562
620
  name = "fluent-uri"
563
621
  version = "0.4.1"
@@ -606,6 +664,16 @@ dependencies = [
606
664
  "num",
607
665
  ]
608
666
 
667
+ [[package]]
668
+ name = "fraction"
669
+ version = "0.17.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "e246562084dde8ebbcc943b261c406ce4f68e5032ec28029a251a47d6a295500"
672
+ dependencies = [
673
+ "num",
674
+ "num-bigint 0.4.8",
675
+ ]
676
+
609
677
  [[package]]
610
678
  name = "generic-array"
611
679
  version = "0.14.7"
@@ -616,6 +684,17 @@ dependencies = [
616
684
  "version_check",
617
685
  ]
618
686
 
687
+ [[package]]
688
+ name = "getrandom"
689
+ version = "0.2.17"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
692
+ dependencies = [
693
+ "cfg-if",
694
+ "libc",
695
+ "wasi",
696
+ ]
697
+
619
698
  [[package]]
620
699
  name = "getrandom"
621
700
  version = "0.3.4"
@@ -646,35 +725,55 @@ dependencies = [
646
725
 
647
726
  [[package]]
648
727
  name = "glaz"
649
- version = "1.2.0"
728
+ version = "2.0.0"
650
729
  dependencies = [
651
730
  "glaz-module",
652
731
  "glaz-proto",
653
732
  "glaz-roles",
654
733
  "magnus",
655
734
  "prost",
735
+ "rb-sys",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "glaz-engine"
740
+ version = "0.1.0"
741
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56#0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56"
742
+ dependencies = [
743
+ "async-trait",
744
+ "glaz-policy",
745
+ "glaz-proto",
746
+ "glaz-roles",
747
+ "thiserror",
748
+ "tracing",
749
+ "uuid",
656
750
  ]
657
751
 
658
752
  [[package]]
659
753
  name = "glaz-govern"
660
754
  version = "0.1.0"
661
- source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
755
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56#0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56"
662
756
  dependencies = [
663
757
  "glaz-proto",
758
+ "jsonschema 0.56.0",
664
759
  "regorus",
665
760
  "serde",
666
761
  "serde_json",
667
762
  "thiserror",
763
+ "ureq",
764
+ "uuid",
668
765
  ]
669
766
 
670
767
  [[package]]
671
768
  name = "glaz-module"
672
769
  version = "0.1.0"
673
- source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
770
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56#0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56"
674
771
  dependencies = [
772
+ "glaz-engine",
675
773
  "glaz-govern",
676
774
  "glaz-policy",
677
775
  "glaz-proto",
776
+ "glaz-roles",
678
777
  "prost",
679
778
  "serde_json",
680
779
  "thiserror",
@@ -685,7 +784,7 @@ dependencies = [
685
784
  [[package]]
686
785
  name = "glaz-policy"
687
786
  version = "0.1.0"
688
- source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
787
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56#0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56"
689
788
  dependencies = [
690
789
  "async-trait",
691
790
  "cedar-policy",
@@ -697,7 +796,7 @@ dependencies = [
697
796
  [[package]]
698
797
  name = "glaz-proto"
699
798
  version = "0.1.0"
700
- source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
799
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56#0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56"
701
800
  dependencies = [
702
801
  "prost",
703
802
  "prost-build",
@@ -708,7 +807,7 @@ dependencies = [
708
807
  [[package]]
709
808
  name = "glaz-roles"
710
809
  version = "0.1.0"
711
- source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=af9019a186fbb42cede0ad5ba7496aff2f88cb41#af9019a186fbb42cede0ad5ba7496aff2f88cb41"
810
+ source = "git+https://gitlab.com/gitlab-org/auth/glaz.git?rev=0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56#0c90ffcd6e6f74b7a1998e196e7d324ad7d54b56"
712
811
  dependencies = [
713
812
  "glaz-proto",
714
813
  "serde",
@@ -779,6 +878,22 @@ version = "0.4.3"
779
878
  source = "registry+https://github.com/rust-lang/crates.io-index"
780
879
  checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
781
880
 
881
+ [[package]]
882
+ name = "http"
883
+ version = "1.5.0"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
886
+ dependencies = [
887
+ "bytes",
888
+ "itoa",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "httparse"
893
+ version = "1.10.1"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
896
+
782
897
  [[package]]
783
898
  name = "iana-time-zone"
784
899
  version = "0.1.65"
@@ -971,6 +1086,55 @@ version = "1.0.18"
971
1086
  source = "registry+https://github.com/rust-lang/crates.io-index"
972
1087
  checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
973
1088
 
1089
+ [[package]]
1090
+ name = "jni"
1091
+ version = "0.22.4"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1094
+ dependencies = [
1095
+ "cfg-if",
1096
+ "combine",
1097
+ "jni-macros",
1098
+ "jni-sys",
1099
+ "log",
1100
+ "simd_cesu8",
1101
+ "thiserror",
1102
+ "walkdir",
1103
+ "windows-link",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "jni-macros"
1108
+ version = "0.22.4"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1111
+ dependencies = [
1112
+ "proc-macro2",
1113
+ "quote",
1114
+ "rustc_version",
1115
+ "simd_cesu8",
1116
+ "syn 2.0.117",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "jni-sys"
1121
+ version = "0.4.1"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1124
+ dependencies = [
1125
+ "jni-sys-macros",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "jni-sys-macros"
1130
+ version = "0.4.1"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1133
+ dependencies = [
1134
+ "quote",
1135
+ "syn 2.0.117",
1136
+ ]
1137
+
974
1138
  [[package]]
975
1139
  name = "js-sys"
976
1140
  version = "0.3.94"
@@ -983,40 +1147,109 @@ dependencies = [
983
1147
 
984
1148
  [[package]]
985
1149
  name = "jsonschema"
986
- version = "0.47.0"
1150
+ version = "0.49.9"
987
1151
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
- checksum = "281c43ff06dcb331e9356d30e38853d559ce3d0a3f693e0b0e102667dec14fb1"
1152
+ checksum = "59ec8a241beed129f06114aa68007e905ca350e7baeb6e17a7631bb7978d91b2"
989
1153
  dependencies = [
990
1154
  "ahash",
991
1155
  "bytecount",
992
1156
  "data-encoding",
993
1157
  "email_address",
994
1158
  "fancy-regex",
995
- "fraction",
1159
+ "fraction 0.15.4",
996
1160
  "getrandom 0.3.4",
997
1161
  "idna",
998
1162
  "itoa",
999
- "jsonschema-regex",
1163
+ "jsonschema-regex 0.49.9",
1164
+ "jsonschema-value 0.49.9",
1165
+ "num-cmp",
1166
+ "num-traits",
1167
+ "percent-encoding",
1168
+ "referencing 0.49.9",
1169
+ "regex",
1170
+ "serde",
1171
+ "serde_json",
1172
+ "strum",
1173
+ "unicode-general-category",
1174
+ "uuid-simd",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "jsonschema"
1179
+ version = "0.56.0"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "b6a806f80c1f5560431009ce5ec29b59d38f950e0cd7db5f1b8925e6d8104e21"
1182
+ dependencies = [
1183
+ "ahash",
1184
+ "bytecount",
1185
+ "data-encoding",
1186
+ "email_address",
1187
+ "fancy-regex",
1188
+ "fraction 0.17.0",
1189
+ "getrandom 0.3.4",
1190
+ "itoa",
1191
+ "jsonschema-regex 0.56.0",
1192
+ "jsonschema-value 0.56.0",
1000
1193
  "num-cmp",
1001
1194
  "num-traits",
1002
1195
  "percent-encoding",
1003
- "referencing",
1196
+ "referencing 0.56.0",
1004
1197
  "regex",
1005
1198
  "serde",
1006
1199
  "serde_json",
1200
+ "strum",
1007
1201
  "unicode-general-category",
1008
1202
  "uuid-simd",
1009
1203
  ]
1010
1204
 
1011
1205
  [[package]]
1012
1206
  name = "jsonschema-regex"
1013
- version = "0.47.0"
1207
+ version = "0.49.9"
1014
1208
  source = "registry+https://github.com/rust-lang/crates.io-index"
1015
- checksum = "ee0b351864e7ffbc5db9273daf7fa1b4d5177b0946713d667ca571b83c0b4045"
1209
+ checksum = "91994f45017ed5e66aa8e59b8415f4cb033a6380d7200387b7cf117595fbdf85"
1016
1210
  dependencies = [
1017
1211
  "regex-syntax",
1018
1212
  ]
1019
1213
 
1214
+ [[package]]
1215
+ name = "jsonschema-regex"
1216
+ version = "0.56.0"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "cb862addfa7782108933abcf842fe25334523a9df5b89ea4d9620e3dd7b42181"
1219
+ dependencies = [
1220
+ "regex-syntax",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "jsonschema-value"
1225
+ version = "0.49.9"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "7ec7637f83e510868ae6ed625f7ebfbbde4554ee8ce49854caa5126a8b9b9ecb"
1228
+ dependencies = [
1229
+ "ahash",
1230
+ "bytecount",
1231
+ "fraction 0.15.4",
1232
+ "num-cmp",
1233
+ "num-traits",
1234
+ "serde_json",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "jsonschema-value"
1239
+ version = "0.56.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "a05cd404c5ff6e2731dbbf7e290a27417750acfb59e329560a1d0af384c93fb0"
1242
+ dependencies = [
1243
+ "ahash",
1244
+ "bytecount",
1245
+ "fraction 0.17.0",
1246
+ "getrandom 0.3.4",
1247
+ "num-cmp",
1248
+ "num-traits",
1249
+ "serde_json",
1250
+ "zmij",
1251
+ ]
1252
+
1020
1253
  [[package]]
1021
1254
  name = "keccak"
1022
1255
  version = "0.1.6"
@@ -1086,6 +1319,12 @@ dependencies = [
1086
1319
  "windows-link",
1087
1320
  ]
1088
1321
 
1322
+ [[package]]
1323
+ name = "libyaml-rs"
1324
+ version = "0.3.0"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "2e126dda6f34391ab7b444f9922055facc83c07a910da3eb16f1e4d9c45dc777"
1327
+
1089
1328
  [[package]]
1090
1329
  name = "linked-hash-map"
1091
1330
  version = "0.5.6"
@@ -1165,9 +1404,9 @@ dependencies = [
1165
1404
 
1166
1405
  [[package]]
1167
1406
  name = "lru"
1168
- version = "0.18.1"
1407
+ version = "0.18.4"
1169
1408
  source = "registry+https://github.com/rust-lang/crates.io-index"
1170
- checksum = "0b6180140927ee907000b0aa540091f6ea512ead4447c92b8fc35bc72788a5a6"
1409
+ checksum = "ff9840bcc50b71349309900da0ce7279aa336ae71d73250b07998932c7d97c25"
1171
1410
 
1172
1411
  [[package]]
1173
1412
  name = "magnus"
@@ -1233,6 +1472,16 @@ version = "0.2.1"
1233
1472
  source = "registry+https://github.com/rust-lang/crates.io-index"
1234
1473
  checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1235
1474
 
1475
+ [[package]]
1476
+ name = "miniz_oxide"
1477
+ version = "0.9.1"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
1480
+ dependencies = [
1481
+ "adler2",
1482
+ "simd-adler32",
1483
+ ]
1484
+
1236
1485
  [[package]]
1237
1486
  name = "mio"
1238
1487
  version = "1.2.0"
@@ -1393,6 +1642,12 @@ version = "1.21.4"
1393
1642
  source = "registry+https://github.com/rust-lang/crates.io-index"
1394
1643
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1395
1644
 
1645
+ [[package]]
1646
+ name = "openssl-probe"
1647
+ version = "0.2.1"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1650
+
1396
1651
  [[package]]
1397
1652
  name = "outref"
1398
1653
  version = "0.5.2"
@@ -1568,7 +1823,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
1823
  checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042"
1569
1824
  dependencies = [
1570
1825
  "heck",
1571
- "itertools 0.14.0",
1826
+ "itertools 0.13.0",
1572
1827
  "log",
1573
1828
  "multimap",
1574
1829
  "petgraph 0.8.3",
@@ -1587,7 +1842,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
1842
  checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
1588
1843
  dependencies = [
1589
1844
  "anyhow",
1590
- "itertools 0.14.0",
1845
+ "itertools 0.13.0",
1591
1846
  "proc-macro2",
1592
1847
  "quote",
1593
1848
  "syn 2.0.117",
@@ -1775,9 +2030,26 @@ dependencies = [
1775
2030
 
1776
2031
  [[package]]
1777
2032
  name = "referencing"
1778
- version = "0.47.0"
2033
+ version = "0.49.9"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "6efa2154ea6f5ce0fdecdd2a8d18f2fa1a39a8fbba91564f555a592e4dce8278"
2036
+ dependencies = [
2037
+ "ahash",
2038
+ "fluent-uri",
2039
+ "getrandom 0.3.4",
2040
+ "hashbrown 0.17.1",
2041
+ "itoa",
2042
+ "micromap",
2043
+ "parking_lot",
2044
+ "percent-encoding",
2045
+ "serde_json",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "referencing"
2050
+ version = "0.56.0"
1779
2051
  source = "registry+https://github.com/rust-lang/crates.io-index"
1780
- checksum = "348e860aeb0b7bd035778fd11dd9cd5290d32e4aed3b8f2274a00287a9fd362b"
2052
+ checksum = "a3b4a92fac7e28c27de3ad26df2ecb9e652f227b258e845af034052e5b22c96c"
1781
2053
  dependencies = [
1782
2054
  "ahash",
1783
2055
  "fluent-uri",
@@ -1804,9 +2076,9 @@ dependencies = [
1804
2076
 
1805
2077
  [[package]]
1806
2078
  name = "regex-automata"
1807
- version = "0.4.14"
2079
+ version = "0.4.18"
1808
2080
  source = "registry+https://github.com/rust-lang/crates.io-index"
1809
- checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2081
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1810
2082
  dependencies = [
1811
2083
  "aho-corasick",
1812
2084
  "memchr",
@@ -1821,9 +2093,9 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1821
2093
 
1822
2094
  [[package]]
1823
2095
  name = "regorus"
1824
- version = "0.11.0"
2096
+ version = "0.12.0"
1825
2097
  source = "registry+https://github.com/rust-lang/crates.io-index"
1826
- checksum = "3cc4dc91481b1d4001ba7f2e81f7faf674142e0ac36d37d79e5f02764d06571e"
2098
+ checksum = "94d90cbdbc4d2900378cf7dbb0c8df85a28e6de07fad75c60cd4d73283eded23"
1827
2099
  dependencies = [
1828
2100
  "anyhow",
1829
2101
  "chrono",
@@ -1832,7 +2104,7 @@ dependencies = [
1832
2104
  "globset",
1833
2105
  "indexmap 2.13.1",
1834
2106
  "ipnet",
1835
- "jsonschema",
2107
+ "jsonschema 0.49.9",
1836
2108
  "lazy_static",
1837
2109
  "lru",
1838
2110
  "msvc_spectre_libs",
@@ -1845,11 +2117,26 @@ dependencies = [
1845
2117
  "semver",
1846
2118
  "serde",
1847
2119
  "serde_json",
1848
- "serde_yaml",
1849
2120
  "spin",
1850
2121
  "thiserror",
1851
2122
  "url",
1852
2123
  "uuid",
2124
+ "vstd",
2125
+ "yaml_serde",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "ring"
2130
+ version = "0.17.14"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2133
+ dependencies = [
2134
+ "cc",
2135
+ "cfg-if",
2136
+ "getrandom 0.2.17",
2137
+ "libc",
2138
+ "untrusted",
2139
+ "windows-sys 0.52.0",
1853
2140
  ]
1854
2141
 
1855
2142
  [[package]]
@@ -1864,6 +2151,15 @@ version = "0.0.7"
1864
2151
  source = "registry+https://github.com/rust-lang/crates.io-index"
1865
2152
  checksum = "8be87abb9e40db7466e0681dc8ecd9dcfd40360cb10b4c8fe24a7c4c3669b198"
1866
2153
 
2154
+ [[package]]
2155
+ name = "rustc_version"
2156
+ version = "0.4.1"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2159
+ dependencies = [
2160
+ "semver",
2161
+ ]
2162
+
1867
2163
  [[package]]
1868
2164
  name = "rustix"
1869
2165
  version = "1.1.4"
@@ -1877,6 +2173,80 @@ dependencies = [
1877
2173
  "windows-sys 0.61.2",
1878
2174
  ]
1879
2175
 
2176
+ [[package]]
2177
+ name = "rustls"
2178
+ version = "0.23.43"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
2181
+ dependencies = [
2182
+ "log",
2183
+ "once_cell",
2184
+ "ring",
2185
+ "rustls-pki-types",
2186
+ "rustls-webpki",
2187
+ "subtle",
2188
+ "zeroize",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "rustls-native-certs"
2193
+ version = "0.8.4"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
2196
+ dependencies = [
2197
+ "openssl-probe",
2198
+ "rustls-pki-types",
2199
+ "schannel",
2200
+ "security-framework",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "rustls-pki-types"
2205
+ version = "1.15.1"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
2208
+ dependencies = [
2209
+ "zeroize",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "rustls-platform-verifier"
2214
+ version = "0.7.0"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
2217
+ dependencies = [
2218
+ "core-foundation",
2219
+ "core-foundation-sys",
2220
+ "jni",
2221
+ "log",
2222
+ "once_cell",
2223
+ "rustls",
2224
+ "rustls-native-certs",
2225
+ "rustls-platform-verifier-android",
2226
+ "rustls-webpki",
2227
+ "security-framework",
2228
+ "security-framework-sys",
2229
+ "webpki-root-certs",
2230
+ "windows-sys 0.61.2",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "rustls-platform-verifier-android"
2235
+ version = "0.1.1"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2238
+
2239
+ [[package]]
2240
+ name = "rustls-webpki"
2241
+ version = "0.103.15"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
2244
+ dependencies = [
2245
+ "ring",
2246
+ "rustls-pki-types",
2247
+ "untrusted",
2248
+ ]
2249
+
1880
2250
  [[package]]
1881
2251
  name = "rustversion"
1882
2252
  version = "1.0.22"
@@ -1898,6 +2268,15 @@ dependencies = [
1898
2268
  "winapi-util",
1899
2269
  ]
1900
2270
 
2271
+ [[package]]
2272
+ name = "schannel"
2273
+ version = "0.1.29"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2276
+ dependencies = [
2277
+ "windows-sys 0.61.2",
2278
+ ]
2279
+
1901
2280
  [[package]]
1902
2281
  name = "schemars"
1903
2282
  version = "0.9.0"
@@ -1928,6 +2307,29 @@ version = "1.2.0"
1928
2307
  source = "registry+https://github.com/rust-lang/crates.io-index"
1929
2308
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1930
2309
 
2310
+ [[package]]
2311
+ name = "security-framework"
2312
+ version = "3.7.0"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2315
+ dependencies = [
2316
+ "bitflags",
2317
+ "core-foundation",
2318
+ "core-foundation-sys",
2319
+ "libc",
2320
+ "security-framework-sys",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "security-framework-sys"
2325
+ version = "2.17.0"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2328
+ dependencies = [
2329
+ "core-foundation-sys",
2330
+ "libc",
2331
+ ]
2332
+
1931
2333
  [[package]]
1932
2334
  name = "semver"
1933
2335
  version = "1.0.28"
@@ -1990,7 +2392,7 @@ version = "3.18.0"
1990
2392
  source = "registry+https://github.com/rust-lang/crates.io-index"
1991
2393
  checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f"
1992
2394
  dependencies = [
1993
- "base64",
2395
+ "base64 0.22.1",
1994
2396
  "chrono",
1995
2397
  "hex",
1996
2398
  "indexmap 1.9.3",
@@ -2028,6 +2430,12 @@ dependencies = [
2028
2430
  "unsafe-libyaml",
2029
2431
  ]
2030
2432
 
2433
+ [[package]]
2434
+ name = "sha1_smol"
2435
+ version = "1.0.1"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
2438
+
2031
2439
  [[package]]
2032
2440
  name = "sha3"
2033
2441
  version = "0.10.8"
@@ -2060,6 +2468,28 @@ dependencies = [
2060
2468
  "libc",
2061
2469
  ]
2062
2470
 
2471
+ [[package]]
2472
+ name = "simd-adler32"
2473
+ version = "0.3.10"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2476
+
2477
+ [[package]]
2478
+ name = "simd_cesu8"
2479
+ version = "1.2.0"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
2482
+ dependencies = [
2483
+ "rustc_version",
2484
+ "simdutf8",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "simdutf8"
2489
+ version = "0.1.5"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2492
+
2063
2493
  [[package]]
2064
2494
  name = "siphasher"
2065
2495
  version = "1.0.2"
@@ -2135,6 +2565,33 @@ version = "0.11.1"
2135
2565
  source = "registry+https://github.com/rust-lang/crates.io-index"
2136
2566
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2137
2567
 
2568
+ [[package]]
2569
+ name = "strum"
2570
+ version = "0.28.0"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
2573
+ dependencies = [
2574
+ "strum_macros",
2575
+ ]
2576
+
2577
+ [[package]]
2578
+ name = "strum_macros"
2579
+ version = "0.28.0"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
2582
+ dependencies = [
2583
+ "heck",
2584
+ "proc-macro2",
2585
+ "quote",
2586
+ "syn 2.0.117",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "subtle"
2591
+ version = "2.6.1"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2594
+
2138
2595
  [[package]]
2139
2596
  name = "syn"
2140
2597
  version = "2.0.117"
@@ -2293,6 +2750,37 @@ dependencies = [
2293
2750
  "syn 2.0.117",
2294
2751
  ]
2295
2752
 
2753
+ [[package]]
2754
+ name = "tracing"
2755
+ version = "0.1.44"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2758
+ dependencies = [
2759
+ "pin-project-lite",
2760
+ "tracing-attributes",
2761
+ "tracing-core",
2762
+ ]
2763
+
2764
+ [[package]]
2765
+ name = "tracing-attributes"
2766
+ version = "0.1.31"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2769
+ dependencies = [
2770
+ "proc-macro2",
2771
+ "quote",
2772
+ "syn 2.0.117",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "tracing-core"
2777
+ version = "0.1.36"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2780
+ dependencies = [
2781
+ "once_cell",
2782
+ ]
2783
+
2296
2784
  [[package]]
2297
2785
  name = "typed-arena"
2298
2786
  version = "2.0.2"
@@ -2366,6 +2854,42 @@ version = "0.2.11"
2366
2854
  source = "registry+https://github.com/rust-lang/crates.io-index"
2367
2855
  checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2368
2856
 
2857
+ [[package]]
2858
+ name = "untrusted"
2859
+ version = "0.9.0"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2862
+
2863
+ [[package]]
2864
+ name = "ureq"
2865
+ version = "3.4.0"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "972d7902c8735f2695410b8aed7df6ed12a47394aa1c8d7af49f0497b731a94d"
2868
+ dependencies = [
2869
+ "base64 0.23.1",
2870
+ "flate2",
2871
+ "log",
2872
+ "percent-encoding",
2873
+ "rustls",
2874
+ "rustls-pki-types",
2875
+ "rustls-platform-verifier",
2876
+ "ureq-proto",
2877
+ "utf8-zero",
2878
+ "webpki-roots",
2879
+ ]
2880
+
2881
+ [[package]]
2882
+ name = "ureq-proto"
2883
+ version = "0.6.1"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "da5f78b09e6941e1a0f2e30e695e4b120377b54d5e0aec11b594bb57b3971613"
2886
+ dependencies = [
2887
+ "base64 0.23.1",
2888
+ "http",
2889
+ "httparse",
2890
+ "log",
2891
+ ]
2892
+
2369
2893
  [[package]]
2370
2894
  name = "url"
2371
2895
  version = "2.5.8"
@@ -2378,6 +2902,12 @@ dependencies = [
2378
2902
  "serde",
2379
2903
  ]
2380
2904
 
2905
+ [[package]]
2906
+ name = "utf8-zero"
2907
+ version = "0.8.1"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2910
+
2381
2911
  [[package]]
2382
2912
  name = "utf8_iter"
2383
2913
  version = "1.0.4"
@@ -2394,6 +2924,7 @@ dependencies = [
2394
2924
  "js-sys",
2395
2925
  "rand",
2396
2926
  "serde_core",
2927
+ "sha1_smol",
2397
2928
  "wasm-bindgen",
2398
2929
  ]
2399
2930
 
@@ -2413,12 +2944,77 @@ version = "0.9.5"
2413
2944
  source = "registry+https://github.com/rust-lang/crates.io-index"
2414
2945
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2415
2946
 
2947
+ [[package]]
2948
+ name = "verus_builtin"
2949
+ version = "0.0.0-2026-08-09-0044"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "f5f2985ebd252c492375e32f2bfcff6e6a04523009a0d624785d3468f3729158"
2952
+
2953
+ [[package]]
2954
+ name = "verus_builtin_macros"
2955
+ version = "0.0.0-2026-08-23-0033"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "62f5b1ed2151955cfe25ebfc1382ab422ae004e5cda6c502871425cc9e2ad5f3"
2958
+ dependencies = [
2959
+ "convert_case",
2960
+ "proc-macro2",
2961
+ "quote",
2962
+ "syn 2.0.117",
2963
+ "synstructure",
2964
+ "verus_prettyplease",
2965
+ "verus_syn",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "verus_prettyplease"
2970
+ version = "0.0.0-2026-08-09-0044"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "51fc115de5fb3806bc362060bb683024660ed2bc13c1183d1f01d464e4537139"
2973
+ dependencies = [
2974
+ "proc-macro2",
2975
+ "verus_syn",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "verus_state_machines_macros"
2980
+ version = "0.0.0-2026-08-02-0125"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "93f77ff8d121edb1bf2651335769a80a2f611da8573c3b498434a66b3162805f"
2983
+ dependencies = [
2984
+ "indexmap 2.13.1",
2985
+ "proc-macro2",
2986
+ "quote",
2987
+ "verus_syn",
2988
+ ]
2989
+
2990
+ [[package]]
2991
+ name = "verus_syn"
2992
+ version = "0.0.0-2026-08-02-0125"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "f17237ea6d267e457d53ce36f55b315fc9edd26eb88c765dd95e035c0b415869"
2995
+ dependencies = [
2996
+ "proc-macro2",
2997
+ "quote",
2998
+ "unicode-ident",
2999
+ ]
3000
+
2416
3001
  [[package]]
2417
3002
  name = "vsimd"
2418
3003
  version = "0.8.0"
2419
3004
  source = "registry+https://github.com/rust-lang/crates.io-index"
2420
3005
  checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
2421
3006
 
3007
+ [[package]]
3008
+ name = "vstd"
3009
+ version = "0.0.0-2026-08-23-0033"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "93b32ef60c0a4ce7d85691135c15fada7ab84b2c1471322d320fba313190e2e9"
3012
+ dependencies = [
3013
+ "verus_builtin",
3014
+ "verus_builtin_macros",
3015
+ "verus_state_machines_macros",
3016
+ ]
3017
+
2422
3018
  [[package]]
2423
3019
  name = "walkdir"
2424
3020
  version = "2.5.0"
@@ -2532,6 +3128,24 @@ dependencies = [
2532
3128
  "semver",
2533
3129
  ]
2534
3130
 
3131
+ [[package]]
3132
+ name = "webpki-root-certs"
3133
+ version = "1.0.9"
3134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3135
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
3136
+ dependencies = [
3137
+ "rustls-pki-types",
3138
+ ]
3139
+
3140
+ [[package]]
3141
+ name = "webpki-roots"
3142
+ version = "1.0.9"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
3145
+ dependencies = [
3146
+ "rustls-pki-types",
3147
+ ]
3148
+
2535
3149
  [[package]]
2536
3150
  name = "winapi-util"
2537
3151
  version = "0.1.11"
@@ -2600,6 +3214,15 @@ dependencies = [
2600
3214
  "windows-link",
2601
3215
  ]
2602
3216
 
3217
+ [[package]]
3218
+ name = "windows-sys"
3219
+ version = "0.52.0"
3220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3221
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3222
+ dependencies = [
3223
+ "windows-targets",
3224
+ ]
3225
+
2603
3226
  [[package]]
2604
3227
  name = "windows-sys"
2605
3228
  version = "0.59.0"
@@ -2776,6 +3399,19 @@ version = "0.6.3"
2776
3399
  source = "registry+https://github.com/rust-lang/crates.io-index"
2777
3400
  checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2778
3401
 
3402
+ [[package]]
3403
+ name = "yaml_serde"
3404
+ version = "0.10.7"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "33b729a08a9a6be689bbad3e2bf8015926db54b6622cc89c3a5f7dc174b9e918"
3407
+ dependencies = [
3408
+ "indexmap 2.13.1",
3409
+ "itoa",
3410
+ "libyaml-rs",
3411
+ "ryu",
3412
+ "serde",
3413
+ ]
3414
+
2779
3415
  [[package]]
2780
3416
  name = "yoke"
2781
3417
  version = "0.8.3"
@@ -2840,6 +3476,12 @@ dependencies = [
2840
3476
  "synstructure",
2841
3477
  ]
2842
3478
 
3479
+ [[package]]
3480
+ name = "zeroize"
3481
+ version = "1.9.0"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3484
+
2843
3485
  [[package]]
2844
3486
  name = "zerotrie"
2845
3487
  version = "0.2.4"
@@ -2873,8 +3515,14 @@ dependencies = [
2873
3515
  "syn 2.0.117",
2874
3516
  ]
2875
3517
 
3518
+ [[package]]
3519
+ name = "zlib-rs"
3520
+ version = "0.6.7"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
3523
+
2876
3524
  [[package]]
2877
3525
  name = "zmij"
2878
- version = "1.0.21"
3526
+ version = "1.0.23"
2879
3527
  source = "registry+https://github.com/rust-lang/crates.io-index"
2880
- checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3528
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"