snowflake-code-unit-registry 0.3.13__tar.gz → 0.4.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/Cargo.lock +248 -139
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/Cargo.toml +4 -4
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/PKG-INFO +1 -1
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/Cargo.toml +4 -2
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/build.rs +423 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/examples/code-unit.example.json +14 -7
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/schemas/code-unit.schema.json +51 -14
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/schemas/query-reference.rs.tmpl +9 -0
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/schemas/query-reference.tmpl +23 -0
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/src/checksum.rs +1251 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/error.rs +10 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/filter.rs +1 -2
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/generated/mod.rs +2 -0
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/src/generated/query_reference.rs +74 -0
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/src/generated/updated_at_paths.rs +8 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/lib.rs +7 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/registry/in_memory.rs +32 -1
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/registry/loader.rs +18 -32
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/registry/query.rs +13 -11
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/src/registry/tests.rs +2955 -0
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/src/registry.rs +1265 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/src/lib.rs +134 -18
- snowflake_code_unit_registry-0.4.3/crates/scai-state-python/tests/test_checksum.py +327 -0
- snowflake_code_unit_registry-0.4.3/crates/scai-state-python/tests/test_crud.py +345 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/tests/test_query.py +78 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/tests/test_refresh.py +9 -10
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/tests/test_serialization.py +17 -17
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/pyproject.toml +1 -1
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/python/snowflake_code_unit_registry/__init__.py +170 -22
- snowflake_code_unit_registry-0.3.13/crates/scai-state-core/build.rs +0 -108
- snowflake_code_unit_registry-0.3.13/crates/scai-state-core/src/checksum.rs +0 -435
- snowflake_code_unit_registry-0.3.13/crates/scai-state-core/src/registry.rs +0 -2751
- snowflake_code_unit_registry-0.3.13/crates/scai-state-python/tests/test_checksum.py +0 -273
- snowflake_code_unit_registry-0.3.13/crates/scai-state-python/tests/test_crud.py +0 -158
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/README.md +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/identity.rs +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/registry/README.md +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/registry/graph.rs +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-core/src/registry/test_helpers.rs +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/Cargo.toml +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/README.md +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/tests/conftest.py +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/tests/test_batch.py +0 -0
- {snowflake_code_unit_registry-0.3.13 → snowflake_code_unit_registry-0.4.3}/crates/scai-state-python/tests/test_errors.py +0 -0
|
@@ -55,18 +55,6 @@ dependencies = [
|
|
|
55
55
|
"object",
|
|
56
56
|
]
|
|
57
57
|
|
|
58
|
-
[[package]]
|
|
59
|
-
name = "arrayref"
|
|
60
|
-
version = "0.3.9"
|
|
61
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
-
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
63
|
-
|
|
64
|
-
[[package]]
|
|
65
|
-
name = "arrayvec"
|
|
66
|
-
version = "0.7.6"
|
|
67
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
69
|
-
|
|
70
58
|
[[package]]
|
|
71
59
|
name = "atomic-waker"
|
|
72
60
|
version = "1.1.2"
|
|
@@ -128,20 +116,6 @@ version = "2.11.0"
|
|
|
128
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
117
|
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
130
118
|
|
|
131
|
-
[[package]]
|
|
132
|
-
name = "blake3"
|
|
133
|
-
version = "1.8.3"
|
|
134
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
-
checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
|
|
136
|
-
dependencies = [
|
|
137
|
-
"arrayref",
|
|
138
|
-
"arrayvec",
|
|
139
|
-
"cc",
|
|
140
|
-
"cfg-if",
|
|
141
|
-
"constant_time_eq",
|
|
142
|
-
"cpufeatures",
|
|
143
|
-
]
|
|
144
|
-
|
|
145
119
|
[[package]]
|
|
146
120
|
name = "block-buffer"
|
|
147
121
|
version = "0.10.4"
|
|
@@ -216,7 +190,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
216
190
|
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
217
191
|
dependencies = [
|
|
218
192
|
"iana-time-zone",
|
|
193
|
+
"js-sys",
|
|
219
194
|
"num-traits",
|
|
195
|
+
"serde",
|
|
196
|
+
"wasm-bindgen",
|
|
220
197
|
"windows-link",
|
|
221
198
|
]
|
|
222
199
|
|
|
@@ -262,10 +239,13 @@ dependencies = [
|
|
|
262
239
|
]
|
|
263
240
|
|
|
264
241
|
[[package]]
|
|
265
|
-
name = "
|
|
266
|
-
version = "0.
|
|
242
|
+
name = "convert_case"
|
|
243
|
+
version = "0.11.0"
|
|
267
244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
-
checksum = "
|
|
245
|
+
checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"unicode-segmentation",
|
|
248
|
+
]
|
|
269
249
|
|
|
270
250
|
[[package]]
|
|
271
251
|
name = "core-foundation"
|
|
@@ -327,6 +307,22 @@ dependencies = [
|
|
|
327
307
|
"typenum",
|
|
328
308
|
]
|
|
329
309
|
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "ctor"
|
|
312
|
+
version = "0.6.3"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"ctor-proc-macro",
|
|
317
|
+
"dtor",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "ctor-proc-macro"
|
|
322
|
+
version = "0.0.7"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
325
|
+
|
|
330
326
|
[[package]]
|
|
331
327
|
name = "darling"
|
|
332
328
|
version = "0.20.11"
|
|
@@ -426,6 +422,21 @@ dependencies = [
|
|
|
426
422
|
"syn",
|
|
427
423
|
]
|
|
428
424
|
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "dtor"
|
|
427
|
+
version = "0.1.1"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"dtor-proc-macro",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "dtor-proc-macro"
|
|
436
|
+
version = "0.0.6"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
|
|
439
|
+
|
|
429
440
|
[[package]]
|
|
430
441
|
name = "dunce"
|
|
431
442
|
version = "1.0.5"
|
|
@@ -438,6 +449,12 @@ version = "1.0.20"
|
|
|
438
449
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
450
|
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
440
451
|
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "either"
|
|
454
|
+
version = "1.15.0"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
457
|
+
|
|
441
458
|
[[package]]
|
|
442
459
|
name = "email_address"
|
|
443
460
|
version = "0.2.9"
|
|
@@ -556,6 +573,21 @@ version = "1.3.0"
|
|
|
556
573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
574
|
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
558
575
|
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "futures"
|
|
578
|
+
version = "0.3.32"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"futures-channel",
|
|
583
|
+
"futures-core",
|
|
584
|
+
"futures-executor",
|
|
585
|
+
"futures-io",
|
|
586
|
+
"futures-sink",
|
|
587
|
+
"futures-task",
|
|
588
|
+
"futures-util",
|
|
589
|
+
]
|
|
590
|
+
|
|
559
591
|
[[package]]
|
|
560
592
|
name = "futures-channel"
|
|
561
593
|
version = "0.3.32"
|
|
@@ -572,12 +604,34 @@ version = "0.3.32"
|
|
|
572
604
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
605
|
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
574
606
|
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "futures-executor"
|
|
609
|
+
version = "0.3.32"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"futures-core",
|
|
614
|
+
"futures-task",
|
|
615
|
+
"futures-util",
|
|
616
|
+
]
|
|
617
|
+
|
|
575
618
|
[[package]]
|
|
576
619
|
name = "futures-io"
|
|
577
620
|
version = "0.3.32"
|
|
578
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
622
|
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
580
623
|
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "futures-macro"
|
|
626
|
+
version = "0.3.32"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"proc-macro2",
|
|
631
|
+
"quote",
|
|
632
|
+
"syn",
|
|
633
|
+
]
|
|
634
|
+
|
|
581
635
|
[[package]]
|
|
582
636
|
name = "futures-sink"
|
|
583
637
|
version = "0.3.32"
|
|
@@ -596,8 +650,10 @@ version = "0.3.32"
|
|
|
596
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
651
|
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
598
652
|
dependencies = [
|
|
653
|
+
"futures-channel",
|
|
599
654
|
"futures-core",
|
|
600
655
|
"futures-io",
|
|
656
|
+
"futures-macro",
|
|
601
657
|
"futures-sink",
|
|
602
658
|
"futures-task",
|
|
603
659
|
"memchr",
|
|
@@ -635,20 +691,20 @@ dependencies = [
|
|
|
635
691
|
"cfg-if",
|
|
636
692
|
"js-sys",
|
|
637
693
|
"libc",
|
|
638
|
-
"r-efi",
|
|
694
|
+
"r-efi 5.3.0",
|
|
639
695
|
"wasip2",
|
|
640
696
|
"wasm-bindgen",
|
|
641
697
|
]
|
|
642
698
|
|
|
643
699
|
[[package]]
|
|
644
700
|
name = "getrandom"
|
|
645
|
-
version = "0.4.
|
|
701
|
+
version = "0.4.2"
|
|
646
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
-
checksum = "
|
|
703
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
648
704
|
dependencies = [
|
|
649
705
|
"cfg-if",
|
|
650
706
|
"libc",
|
|
651
|
-
"r-efi",
|
|
707
|
+
"r-efi 6.0.0",
|
|
652
708
|
"wasip2",
|
|
653
709
|
"wasip3",
|
|
654
710
|
]
|
|
@@ -1136,9 +1192,9 @@ dependencies = [
|
|
|
1136
1192
|
|
|
1137
1193
|
[[package]]
|
|
1138
1194
|
name = "jsonschema"
|
|
1139
|
-
version = "0.
|
|
1195
|
+
version = "0.44.1"
|
|
1140
1196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
-
checksum = "
|
|
1197
|
+
checksum = "f98b64a413c93a1b413dfbaf973b78d271648b9cae50b10302ad88af78991672"
|
|
1142
1198
|
dependencies = [
|
|
1143
1199
|
"ahash",
|
|
1144
1200
|
"bytecount",
|
|
@@ -1177,9 +1233,19 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
1177
1233
|
|
|
1178
1234
|
[[package]]
|
|
1179
1235
|
name = "libc"
|
|
1180
|
-
version = "0.2.
|
|
1236
|
+
version = "0.2.183"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "libloading"
|
|
1242
|
+
version = "0.9.0"
|
|
1181
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
-
checksum = "
|
|
1244
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
1245
|
+
dependencies = [
|
|
1246
|
+
"cfg-if",
|
|
1247
|
+
"windows-link",
|
|
1248
|
+
]
|
|
1183
1249
|
|
|
1184
1250
|
[[package]]
|
|
1185
1251
|
name = "libm"
|
|
@@ -1231,6 +1297,71 @@ dependencies = [
|
|
|
1231
1297
|
"windows-sys 0.61.2",
|
|
1232
1298
|
]
|
|
1233
1299
|
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "napi"
|
|
1302
|
+
version = "3.8.3"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "e6944d0bf100571cd6e1a98a316cdca262deb6fccf8d93f5ae1502ca3fc88bd3"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"bitflags",
|
|
1307
|
+
"ctor",
|
|
1308
|
+
"futures",
|
|
1309
|
+
"napi-build",
|
|
1310
|
+
"napi-sys",
|
|
1311
|
+
"nohash-hasher",
|
|
1312
|
+
"rustc-hash",
|
|
1313
|
+
"serde",
|
|
1314
|
+
"serde_json",
|
|
1315
|
+
]
|
|
1316
|
+
|
|
1317
|
+
[[package]]
|
|
1318
|
+
name = "napi-build"
|
|
1319
|
+
version = "2.3.1"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "napi-derive"
|
|
1325
|
+
version = "3.5.2"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "2c914b5e420182bfb73504e0607592cdb8e2e21437d450883077669fb72a114d"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"convert_case",
|
|
1330
|
+
"ctor",
|
|
1331
|
+
"napi-derive-backend",
|
|
1332
|
+
"proc-macro2",
|
|
1333
|
+
"quote",
|
|
1334
|
+
"syn",
|
|
1335
|
+
]
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "napi-derive-backend"
|
|
1339
|
+
version = "5.0.2"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
|
|
1342
|
+
dependencies = [
|
|
1343
|
+
"convert_case",
|
|
1344
|
+
"proc-macro2",
|
|
1345
|
+
"quote",
|
|
1346
|
+
"semver",
|
|
1347
|
+
"syn",
|
|
1348
|
+
]
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "napi-sys"
|
|
1352
|
+
version = "3.2.1"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"libloading",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "nohash-hasher"
|
|
1361
|
+
version = "0.2.0"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
1364
|
+
|
|
1234
1365
|
[[package]]
|
|
1235
1366
|
name = "num"
|
|
1236
1367
|
version = "0.4.3"
|
|
@@ -1601,9 +1732,9 @@ dependencies = [
|
|
|
1601
1732
|
|
|
1602
1733
|
[[package]]
|
|
1603
1734
|
name = "quote"
|
|
1604
|
-
version = "1.0.
|
|
1735
|
+
version = "1.0.45"
|
|
1605
1736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
-
checksum = "
|
|
1737
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1607
1738
|
dependencies = [
|
|
1608
1739
|
"proc-macro2",
|
|
1609
1740
|
]
|
|
@@ -1614,6 +1745,12 @@ version = "5.3.0"
|
|
|
1614
1745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
1746
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1616
1747
|
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "r-efi"
|
|
1750
|
+
version = "6.0.0"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1753
|
+
|
|
1617
1754
|
[[package]]
|
|
1618
1755
|
name = "rand"
|
|
1619
1756
|
version = "0.8.5"
|
|
@@ -1644,6 +1781,26 @@ dependencies = [
|
|
|
1644
1781
|
"getrandom 0.2.17",
|
|
1645
1782
|
]
|
|
1646
1783
|
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "rayon"
|
|
1786
|
+
version = "1.11.0"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1789
|
+
dependencies = [
|
|
1790
|
+
"either",
|
|
1791
|
+
"rayon-core",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "rayon-core"
|
|
1796
|
+
version = "1.13.0"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"crossbeam-deque",
|
|
1801
|
+
"crossbeam-utils",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1647
1804
|
[[package]]
|
|
1648
1805
|
name = "recursive"
|
|
1649
1806
|
version = "0.1.1"
|
|
@@ -1695,9 +1852,9 @@ dependencies = [
|
|
|
1695
1852
|
|
|
1696
1853
|
[[package]]
|
|
1697
1854
|
name = "referencing"
|
|
1698
|
-
version = "0.
|
|
1855
|
+
version = "0.44.1"
|
|
1699
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
-
checksum = "
|
|
1857
|
+
checksum = "22952642836711d7a730d23a4dfb0d732e75a85e4c4f5704266d9c8fac278ff1"
|
|
1701
1858
|
dependencies = [
|
|
1702
1859
|
"ahash",
|
|
1703
1860
|
"fluent-uri",
|
|
@@ -1800,6 +1957,12 @@ dependencies = [
|
|
|
1800
1957
|
"windows-sys 0.52.0",
|
|
1801
1958
|
]
|
|
1802
1959
|
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "rustc-hash"
|
|
1962
|
+
version = "2.1.1"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1965
|
+
|
|
1803
1966
|
[[package]]
|
|
1804
1967
|
name = "rustix"
|
|
1805
1968
|
version = "1.1.4"
|
|
@@ -1904,13 +2067,14 @@ dependencies = [
|
|
|
1904
2067
|
|
|
1905
2068
|
[[package]]
|
|
1906
2069
|
name = "scai-state-core"
|
|
1907
|
-
version = "0.3
|
|
2070
|
+
version = "0.4.3"
|
|
1908
2071
|
dependencies = [
|
|
1909
|
-
"
|
|
2072
|
+
"chrono",
|
|
1910
2073
|
"err_code",
|
|
1911
2074
|
"fs2",
|
|
1912
2075
|
"jsonschema",
|
|
1913
2076
|
"prettyplease",
|
|
2077
|
+
"rayon",
|
|
1914
2078
|
"regress",
|
|
1915
2079
|
"schemars",
|
|
1916
2080
|
"serde",
|
|
@@ -1922,11 +2086,12 @@ dependencies = [
|
|
|
1922
2086
|
"thiserror 2.0.18",
|
|
1923
2087
|
"typify",
|
|
1924
2088
|
"uuid",
|
|
2089
|
+
"xxhash-rust",
|
|
1925
2090
|
]
|
|
1926
2091
|
|
|
1927
2092
|
[[package]]
|
|
1928
2093
|
name = "scai-state-csharp"
|
|
1929
|
-
version = "0.3
|
|
2094
|
+
version = "0.4.3"
|
|
1930
2095
|
dependencies = [
|
|
1931
2096
|
"interoptopus",
|
|
1932
2097
|
"interoptopus_backend_csharp",
|
|
@@ -1935,9 +2100,21 @@ dependencies = [
|
|
|
1935
2100
|
"serde_json",
|
|
1936
2101
|
]
|
|
1937
2102
|
|
|
2103
|
+
[[package]]
|
|
2104
|
+
name = "scai-state-node"
|
|
2105
|
+
version = "0.4.3"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"napi",
|
|
2108
|
+
"napi-build",
|
|
2109
|
+
"napi-derive",
|
|
2110
|
+
"scai-state-core",
|
|
2111
|
+
"serde",
|
|
2112
|
+
"serde_json",
|
|
2113
|
+
]
|
|
2114
|
+
|
|
1938
2115
|
[[package]]
|
|
1939
2116
|
name = "scai-state-python"
|
|
1940
|
-
version = "0.3
|
|
2117
|
+
version = "0.4.3"
|
|
1941
2118
|
dependencies = [
|
|
1942
2119
|
"pyo3",
|
|
1943
2120
|
"pythonize",
|
|
@@ -1948,9 +2125,9 @@ dependencies = [
|
|
|
1948
2125
|
|
|
1949
2126
|
[[package]]
|
|
1950
2127
|
name = "schannel"
|
|
1951
|
-
version = "0.1.
|
|
2128
|
+
version = "0.1.29"
|
|
1952
2129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
-
checksum = "
|
|
2130
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1954
2131
|
dependencies = [
|
|
1955
2132
|
"windows-sys 0.61.2",
|
|
1956
2133
|
]
|
|
@@ -2131,12 +2308,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
2131
2308
|
|
|
2132
2309
|
[[package]]
|
|
2133
2310
|
name = "socket2"
|
|
2134
|
-
version = "0.6.
|
|
2311
|
+
version = "0.6.3"
|
|
2135
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
-
checksum = "
|
|
2313
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2137
2314
|
dependencies = [
|
|
2138
2315
|
"libc",
|
|
2139
|
-
"windows-sys 0.
|
|
2316
|
+
"windows-sys 0.61.2",
|
|
2140
2317
|
]
|
|
2141
2318
|
|
|
2142
2319
|
[[package]]
|
|
@@ -2176,18 +2353,18 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
2176
2353
|
|
|
2177
2354
|
[[package]]
|
|
2178
2355
|
name = "strum"
|
|
2179
|
-
version = "0.
|
|
2356
|
+
version = "0.28.0"
|
|
2180
2357
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
-
checksum = "
|
|
2358
|
+
checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
|
|
2182
2359
|
dependencies = [
|
|
2183
2360
|
"strum_macros",
|
|
2184
2361
|
]
|
|
2185
2362
|
|
|
2186
2363
|
[[package]]
|
|
2187
2364
|
name = "strum_macros"
|
|
2188
|
-
version = "0.
|
|
2365
|
+
version = "0.28.0"
|
|
2189
2366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
-
checksum = "
|
|
2367
|
+
checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
|
|
2191
2368
|
dependencies = [
|
|
2192
2369
|
"heck",
|
|
2193
2370
|
"proc-macro2",
|
|
@@ -2245,7 +2422,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2245
2422
|
checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
|
|
2246
2423
|
dependencies = [
|
|
2247
2424
|
"fastrand",
|
|
2248
|
-
"getrandom 0.4.
|
|
2425
|
+
"getrandom 0.4.2",
|
|
2249
2426
|
"once_cell",
|
|
2250
2427
|
"rustix",
|
|
2251
2428
|
"windows-sys 0.61.2",
|
|
@@ -2325,9 +2502,9 @@ dependencies = [
|
|
|
2325
2502
|
|
|
2326
2503
|
[[package]]
|
|
2327
2504
|
name = "tokio"
|
|
2328
|
-
version = "1.
|
|
2505
|
+
version = "1.50.0"
|
|
2329
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
-
checksum = "
|
|
2507
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
2331
2508
|
dependencies = [
|
|
2332
2509
|
"bytes",
|
|
2333
2510
|
"libc",
|
|
@@ -2539,11 +2716,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
2539
2716
|
|
|
2540
2717
|
[[package]]
|
|
2541
2718
|
name = "uuid"
|
|
2542
|
-
version = "1.
|
|
2719
|
+
version = "1.22.0"
|
|
2543
2720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2544
|
-
checksum = "
|
|
2721
|
+
checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
|
|
2545
2722
|
dependencies = [
|
|
2546
|
-
"getrandom 0.4.
|
|
2723
|
+
"getrandom 0.4.2",
|
|
2547
2724
|
"js-sys",
|
|
2548
2725
|
"wasm-bindgen",
|
|
2549
2726
|
]
|
|
@@ -2842,15 +3019,6 @@ dependencies = [
|
|
|
2842
3019
|
"windows-targets 0.52.6",
|
|
2843
3020
|
]
|
|
2844
3021
|
|
|
2845
|
-
[[package]]
|
|
2846
|
-
name = "windows-sys"
|
|
2847
|
-
version = "0.60.2"
|
|
2848
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2850
|
-
dependencies = [
|
|
2851
|
-
"windows-targets 0.53.5",
|
|
2852
|
-
]
|
|
2853
|
-
|
|
2854
3022
|
[[package]]
|
|
2855
3023
|
name = "windows-sys"
|
|
2856
3024
|
version = "0.61.2"
|
|
@@ -2884,30 +3052,13 @@ dependencies = [
|
|
|
2884
3052
|
"windows_aarch64_gnullvm 0.52.6",
|
|
2885
3053
|
"windows_aarch64_msvc 0.52.6",
|
|
2886
3054
|
"windows_i686_gnu 0.52.6",
|
|
2887
|
-
"windows_i686_gnullvm
|
|
3055
|
+
"windows_i686_gnullvm",
|
|
2888
3056
|
"windows_i686_msvc 0.52.6",
|
|
2889
3057
|
"windows_x86_64_gnu 0.52.6",
|
|
2890
3058
|
"windows_x86_64_gnullvm 0.52.6",
|
|
2891
3059
|
"windows_x86_64_msvc 0.52.6",
|
|
2892
3060
|
]
|
|
2893
3061
|
|
|
2894
|
-
[[package]]
|
|
2895
|
-
name = "windows-targets"
|
|
2896
|
-
version = "0.53.5"
|
|
2897
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
-
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2899
|
-
dependencies = [
|
|
2900
|
-
"windows-link",
|
|
2901
|
-
"windows_aarch64_gnullvm 0.53.1",
|
|
2902
|
-
"windows_aarch64_msvc 0.53.1",
|
|
2903
|
-
"windows_i686_gnu 0.53.1",
|
|
2904
|
-
"windows_i686_gnullvm 0.53.1",
|
|
2905
|
-
"windows_i686_msvc 0.53.1",
|
|
2906
|
-
"windows_x86_64_gnu 0.53.1",
|
|
2907
|
-
"windows_x86_64_gnullvm 0.53.1",
|
|
2908
|
-
"windows_x86_64_msvc 0.53.1",
|
|
2909
|
-
]
|
|
2910
|
-
|
|
2911
3062
|
[[package]]
|
|
2912
3063
|
name = "windows_aarch64_gnullvm"
|
|
2913
3064
|
version = "0.42.2"
|
|
@@ -2920,12 +3071,6 @@ version = "0.52.6"
|
|
|
2920
3071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2921
3072
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2922
3073
|
|
|
2923
|
-
[[package]]
|
|
2924
|
-
name = "windows_aarch64_gnullvm"
|
|
2925
|
-
version = "0.53.1"
|
|
2926
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
-
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2928
|
-
|
|
2929
3074
|
[[package]]
|
|
2930
3075
|
name = "windows_aarch64_msvc"
|
|
2931
3076
|
version = "0.42.2"
|
|
@@ -2938,12 +3083,6 @@ version = "0.52.6"
|
|
|
2938
3083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
3084
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2940
3085
|
|
|
2941
|
-
[[package]]
|
|
2942
|
-
name = "windows_aarch64_msvc"
|
|
2943
|
-
version = "0.53.1"
|
|
2944
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
-
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2946
|
-
|
|
2947
3086
|
[[package]]
|
|
2948
3087
|
name = "windows_i686_gnu"
|
|
2949
3088
|
version = "0.42.2"
|
|
@@ -2956,24 +3095,12 @@ version = "0.52.6"
|
|
|
2956
3095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2957
3096
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2958
3097
|
|
|
2959
|
-
[[package]]
|
|
2960
|
-
name = "windows_i686_gnu"
|
|
2961
|
-
version = "0.53.1"
|
|
2962
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2963
|
-
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2964
|
-
|
|
2965
3098
|
[[package]]
|
|
2966
3099
|
name = "windows_i686_gnullvm"
|
|
2967
3100
|
version = "0.52.6"
|
|
2968
3101
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
3102
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2970
3103
|
|
|
2971
|
-
[[package]]
|
|
2972
|
-
name = "windows_i686_gnullvm"
|
|
2973
|
-
version = "0.53.1"
|
|
2974
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
-
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2976
|
-
|
|
2977
3104
|
[[package]]
|
|
2978
3105
|
name = "windows_i686_msvc"
|
|
2979
3106
|
version = "0.42.2"
|
|
@@ -2986,12 +3113,6 @@ version = "0.52.6"
|
|
|
2986
3113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2987
3114
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2988
3115
|
|
|
2989
|
-
[[package]]
|
|
2990
|
-
name = "windows_i686_msvc"
|
|
2991
|
-
version = "0.53.1"
|
|
2992
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
-
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2994
|
-
|
|
2995
3116
|
[[package]]
|
|
2996
3117
|
name = "windows_x86_64_gnu"
|
|
2997
3118
|
version = "0.42.2"
|
|
@@ -3004,12 +3125,6 @@ version = "0.52.6"
|
|
|
3004
3125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
3126
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3006
3127
|
|
|
3007
|
-
[[package]]
|
|
3008
|
-
name = "windows_x86_64_gnu"
|
|
3009
|
-
version = "0.53.1"
|
|
3010
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
-
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3012
|
-
|
|
3013
3128
|
[[package]]
|
|
3014
3129
|
name = "windows_x86_64_gnullvm"
|
|
3015
3130
|
version = "0.42.2"
|
|
@@ -3022,12 +3137,6 @@ version = "0.52.6"
|
|
|
3022
3137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
3138
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3024
3139
|
|
|
3025
|
-
[[package]]
|
|
3026
|
-
name = "windows_x86_64_gnullvm"
|
|
3027
|
-
version = "0.53.1"
|
|
3028
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
-
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3030
|
-
|
|
3031
3140
|
[[package]]
|
|
3032
3141
|
name = "windows_x86_64_msvc"
|
|
3033
3142
|
version = "0.42.2"
|
|
@@ -3040,12 +3149,6 @@ version = "0.52.6"
|
|
|
3040
3149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
3150
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3042
3151
|
|
|
3043
|
-
[[package]]
|
|
3044
|
-
name = "windows_x86_64_msvc"
|
|
3045
|
-
version = "0.53.1"
|
|
3046
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3047
|
-
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3048
|
-
|
|
3049
3152
|
[[package]]
|
|
3050
3153
|
name = "wit-bindgen"
|
|
3051
3154
|
version = "0.51.0"
|
|
@@ -3140,6 +3243,12 @@ version = "0.6.2"
|
|
|
3140
3243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3141
3244
|
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3142
3245
|
|
|
3246
|
+
[[package]]
|
|
3247
|
+
name = "xxhash-rust"
|
|
3248
|
+
version = "0.8.15"
|
|
3249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3250
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
3251
|
+
|
|
3143
3252
|
[[package]]
|
|
3144
3253
|
name = "yoke"
|
|
3145
3254
|
version = "0.8.1"
|
|
@@ -3165,18 +3274,18 @@ dependencies = [
|
|
|
3165
3274
|
|
|
3166
3275
|
[[package]]
|
|
3167
3276
|
name = "zerocopy"
|
|
3168
|
-
version = "0.8.
|
|
3277
|
+
version = "0.8.42"
|
|
3169
3278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3170
|
-
checksum = "
|
|
3279
|
+
checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
|
|
3171
3280
|
dependencies = [
|
|
3172
3281
|
"zerocopy-derive",
|
|
3173
3282
|
]
|
|
3174
3283
|
|
|
3175
3284
|
[[package]]
|
|
3176
3285
|
name = "zerocopy-derive"
|
|
3177
|
-
version = "0.8.
|
|
3286
|
+
version = "0.8.42"
|
|
3178
3287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3179
|
-
checksum = "
|
|
3288
|
+
checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
|
|
3180
3289
|
dependencies = [
|
|
3181
3290
|
"proc-macro2",
|
|
3182
3291
|
"quote",
|