snowflake-code-unit-registry 0.4.3__tar.gz → 0.4.12__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.4.3 → snowflake_code_unit_registry-0.4.12}/Cargo.lock +101 -35
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/Cargo.toml +1 -1
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/PKG-INFO +1 -1
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/Cargo.toml +3 -2
- snowflake_code_unit_registry-0.4.12/crates/scai-state-core/build.rs +507 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/examples/code-unit.example.json +30 -1
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/schemas/code-unit.schema.json +85 -11
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/checksum.rs +15 -29
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/error.rs +11 -22
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/filter.rs +13 -14
- snowflake_code_unit_registry-0.4.12/crates/scai-state-core/src/generated/file_path_fields.rs +9 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/generated/mod.rs +1 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/generated/query_reference.rs +22 -8
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/generated/updated_at_paths.rs +4 -1
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/lib.rs +6 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry/loader.rs +1 -6
- snowflake_code_unit_registry-0.4.12/crates/scai-state-core/src/registry/paths.rs +208 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry/tests.rs +462 -33
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry.rs +72 -35
- snowflake_code_unit_registry-0.4.12/crates/scai-state-core/src/validation.rs +328 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/src/lib.rs +25 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/test_crud.py +15 -14
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/test_query.py +12 -11
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/test_serialization.py +47 -4
- snowflake_code_unit_registry-0.4.12/crates/scai-state-python/tests/test_validation.py +90 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/pyproject.toml +1 -1
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/python/snowflake_code_unit_registry/__init__.py +72 -1
- snowflake_code_unit_registry-0.4.12/python/snowflake_code_unit_registry/types.py +438 -0
- snowflake_code_unit_registry-0.4.3/crates/scai-state-core/build.rs +0 -423
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/README.md +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/schemas/query-reference.rs.tmpl +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/schemas/query-reference.tmpl +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/identity.rs +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry/README.md +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry/graph.rs +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry/in_memory.rs +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry/query.rs +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-core/src/registry/test_helpers.rs +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/Cargo.toml +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/README.md +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/conftest.py +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/test_batch.py +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/test_checksum.py +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/test_errors.py +0 -0
- {snowflake_code_unit_registry-0.4.3 → snowflake_code_unit_registry-0.4.12}/crates/scai-state-python/tests/test_refresh.py +0 -0
|
@@ -69,9 +69,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
69
69
|
|
|
70
70
|
[[package]]
|
|
71
71
|
name = "aws-lc-rs"
|
|
72
|
-
version = "1.16.
|
|
72
|
+
version = "1.16.2"
|
|
73
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
-
checksum = "
|
|
74
|
+
checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
|
|
75
75
|
dependencies = [
|
|
76
76
|
"aws-lc-sys",
|
|
77
77
|
"zeroize",
|
|
@@ -79,9 +79,9 @@ dependencies = [
|
|
|
79
79
|
|
|
80
80
|
[[package]]
|
|
81
81
|
name = "aws-lc-sys"
|
|
82
|
-
version = "0.
|
|
82
|
+
version = "0.39.0"
|
|
83
83
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
-
checksum = "
|
|
84
|
+
checksum = "1fa7e52a4c5c547c741610a2c6f123f3881e409b714cd27e6798ef020c514f0a"
|
|
85
85
|
dependencies = [
|
|
86
86
|
"cc",
|
|
87
87
|
"cmake",
|
|
@@ -161,9 +161,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
|
161
161
|
|
|
162
162
|
[[package]]
|
|
163
163
|
name = "cc"
|
|
164
|
-
version = "1.2.
|
|
164
|
+
version = "1.2.57"
|
|
165
165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
166
|
+
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
|
|
167
167
|
dependencies = [
|
|
168
168
|
"find-msvc-tools",
|
|
169
169
|
"jobserver",
|
|
@@ -1134,9 +1134,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
|
1134
1134
|
|
|
1135
1135
|
[[package]]
|
|
1136
1136
|
name = "iri-string"
|
|
1137
|
-
version = "0.7.
|
|
1137
|
+
version = "0.7.11"
|
|
1138
1138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
-
checksum = "
|
|
1139
|
+
checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb"
|
|
1140
1140
|
dependencies = [
|
|
1141
1141
|
"memchr",
|
|
1142
1142
|
"serde",
|
|
@@ -1144,9 +1144,9 @@ dependencies = [
|
|
|
1144
1144
|
|
|
1145
1145
|
[[package]]
|
|
1146
1146
|
name = "itoa"
|
|
1147
|
-
version = "1.0.
|
|
1147
|
+
version = "1.0.18"
|
|
1148
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
-
checksum = "
|
|
1149
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1150
1150
|
|
|
1151
1151
|
[[package]]
|
|
1152
1152
|
name = "jni"
|
|
@@ -1157,7 +1157,7 @@ dependencies = [
|
|
|
1157
1157
|
"cesu8",
|
|
1158
1158
|
"cfg-if",
|
|
1159
1159
|
"combine",
|
|
1160
|
-
"jni-sys",
|
|
1160
|
+
"jni-sys 0.3.1",
|
|
1161
1161
|
"log",
|
|
1162
1162
|
"thiserror 1.0.69",
|
|
1163
1163
|
"walkdir",
|
|
@@ -1166,9 +1166,31 @@ dependencies = [
|
|
|
1166
1166
|
|
|
1167
1167
|
[[package]]
|
|
1168
1168
|
name = "jni-sys"
|
|
1169
|
-
version = "0.3.
|
|
1169
|
+
version = "0.3.1"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"jni-sys 0.4.1",
|
|
1174
|
+
]
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "jni-sys"
|
|
1178
|
+
version = "0.4.1"
|
|
1170
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
-
checksum = "
|
|
1180
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1181
|
+
dependencies = [
|
|
1182
|
+
"jni-sys-macros",
|
|
1183
|
+
]
|
|
1184
|
+
|
|
1185
|
+
[[package]]
|
|
1186
|
+
name = "jni-sys-macros"
|
|
1187
|
+
version = "0.4.1"
|
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1190
|
+
dependencies = [
|
|
1191
|
+
"quote",
|
|
1192
|
+
"syn",
|
|
1193
|
+
]
|
|
1172
1194
|
|
|
1173
1195
|
[[package]]
|
|
1174
1196
|
name = "jobserver"
|
|
@@ -1192,9 +1214,9 @@ dependencies = [
|
|
|
1192
1214
|
|
|
1193
1215
|
[[package]]
|
|
1194
1216
|
name = "jsonschema"
|
|
1195
|
-
version = "0.
|
|
1217
|
+
version = "0.45.0"
|
|
1196
1218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1219
|
+
checksum = "6f29616f6e19415398eb186964fb7cbbeef572c79bede3622a8277667924bbe3"
|
|
1198
1220
|
dependencies = [
|
|
1199
1221
|
"ahash",
|
|
1200
1222
|
"bytecount",
|
|
@@ -1452,9 +1474,9 @@ dependencies = [
|
|
|
1452
1474
|
|
|
1453
1475
|
[[package]]
|
|
1454
1476
|
name = "once_cell"
|
|
1455
|
-
version = "1.21.
|
|
1477
|
+
version = "1.21.4"
|
|
1456
1478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
-
checksum = "
|
|
1479
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1458
1480
|
|
|
1459
1481
|
[[package]]
|
|
1460
1482
|
name = "openssl-probe"
|
|
@@ -1852,9 +1874,9 @@ dependencies = [
|
|
|
1852
1874
|
|
|
1853
1875
|
[[package]]
|
|
1854
1876
|
name = "referencing"
|
|
1855
|
-
version = "0.
|
|
1877
|
+
version = "0.45.0"
|
|
1856
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
-
checksum = "
|
|
1879
|
+
checksum = "b8a618c14f8ba29d8193bb55e2bf13e4fb2b1115313ecb7ae94b43100c7ac7d5"
|
|
1858
1880
|
dependencies = [
|
|
1859
1881
|
"ahash",
|
|
1860
1882
|
"fluent-uri",
|
|
@@ -1904,6 +1926,16 @@ dependencies = [
|
|
|
1904
1926
|
"memchr",
|
|
1905
1927
|
]
|
|
1906
1928
|
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "regress"
|
|
1931
|
+
version = "0.11.0"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "07948de9abc2e83adbeb7543c061a5ddaf7d944afcafbdd6e6b39aeacd40504b"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"hashbrown 0.16.1",
|
|
1936
|
+
"memchr",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1907
1939
|
[[package]]
|
|
1908
1940
|
name = "reqwest"
|
|
1909
1941
|
version = "0.13.2"
|
|
@@ -2040,9 +2072,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
2040
2072
|
|
|
2041
2073
|
[[package]]
|
|
2042
2074
|
name = "rustls-webpki"
|
|
2043
|
-
version = "0.103.
|
|
2075
|
+
version = "0.103.10"
|
|
2044
2076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
-
checksum = "
|
|
2077
|
+
checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
|
|
2046
2078
|
dependencies = [
|
|
2047
2079
|
"aws-lc-rs",
|
|
2048
2080
|
"ring",
|
|
@@ -2067,7 +2099,7 @@ dependencies = [
|
|
|
2067
2099
|
|
|
2068
2100
|
[[package]]
|
|
2069
2101
|
name = "scai-state-core"
|
|
2070
|
-
version = "0.4.
|
|
2102
|
+
version = "0.4.12"
|
|
2071
2103
|
dependencies = [
|
|
2072
2104
|
"chrono",
|
|
2073
2105
|
"err_code",
|
|
@@ -2075,7 +2107,7 @@ dependencies = [
|
|
|
2075
2107
|
"jsonschema",
|
|
2076
2108
|
"prettyplease",
|
|
2077
2109
|
"rayon",
|
|
2078
|
-
"regress",
|
|
2110
|
+
"regress 0.11.0",
|
|
2079
2111
|
"schemars",
|
|
2080
2112
|
"serde",
|
|
2081
2113
|
"serde_json",
|
|
@@ -2083,6 +2115,7 @@ dependencies = [
|
|
|
2083
2115
|
"strum",
|
|
2084
2116
|
"syn",
|
|
2085
2117
|
"tempfile",
|
|
2118
|
+
"test-case",
|
|
2086
2119
|
"thiserror 2.0.18",
|
|
2087
2120
|
"typify",
|
|
2088
2121
|
"uuid",
|
|
@@ -2091,7 +2124,7 @@ dependencies = [
|
|
|
2091
2124
|
|
|
2092
2125
|
[[package]]
|
|
2093
2126
|
name = "scai-state-csharp"
|
|
2094
|
-
version = "0.4.
|
|
2127
|
+
version = "0.4.12"
|
|
2095
2128
|
dependencies = [
|
|
2096
2129
|
"interoptopus",
|
|
2097
2130
|
"interoptopus_backend_csharp",
|
|
@@ -2102,7 +2135,7 @@ dependencies = [
|
|
|
2102
2135
|
|
|
2103
2136
|
[[package]]
|
|
2104
2137
|
name = "scai-state-node"
|
|
2105
|
-
version = "0.4.
|
|
2138
|
+
version = "0.4.12"
|
|
2106
2139
|
dependencies = [
|
|
2107
2140
|
"napi",
|
|
2108
2141
|
"napi-build",
|
|
@@ -2114,7 +2147,7 @@ dependencies = [
|
|
|
2114
2147
|
|
|
2115
2148
|
[[package]]
|
|
2116
2149
|
name = "scai-state-python"
|
|
2117
|
-
version = "0.4.
|
|
2150
|
+
version = "0.4.12"
|
|
2118
2151
|
dependencies = [
|
|
2119
2152
|
"pyo3",
|
|
2120
2153
|
"pythonize",
|
|
@@ -2417,9 +2450,9 @@ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
|
2417
2450
|
|
|
2418
2451
|
[[package]]
|
|
2419
2452
|
name = "tempfile"
|
|
2420
|
-
version = "3.
|
|
2453
|
+
version = "3.27.0"
|
|
2421
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
-
checksum = "
|
|
2455
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2423
2456
|
dependencies = [
|
|
2424
2457
|
"fastrand",
|
|
2425
2458
|
"getrandom 0.4.2",
|
|
@@ -2450,6 +2483,39 @@ dependencies = [
|
|
|
2450
2483
|
"unicode-segmentation",
|
|
2451
2484
|
]
|
|
2452
2485
|
|
|
2486
|
+
[[package]]
|
|
2487
|
+
name = "test-case"
|
|
2488
|
+
version = "3.3.1"
|
|
2489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2490
|
+
checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
|
|
2491
|
+
dependencies = [
|
|
2492
|
+
"test-case-macros",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2495
|
+
[[package]]
|
|
2496
|
+
name = "test-case-core"
|
|
2497
|
+
version = "3.3.1"
|
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
+
checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
|
|
2500
|
+
dependencies = [
|
|
2501
|
+
"cfg-if",
|
|
2502
|
+
"proc-macro2",
|
|
2503
|
+
"quote",
|
|
2504
|
+
"syn",
|
|
2505
|
+
]
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "test-case-macros"
|
|
2509
|
+
version = "3.3.1"
|
|
2510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
+
checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
|
|
2512
|
+
dependencies = [
|
|
2513
|
+
"proc-macro2",
|
|
2514
|
+
"quote",
|
|
2515
|
+
"syn",
|
|
2516
|
+
"test-case-core",
|
|
2517
|
+
]
|
|
2518
|
+
|
|
2453
2519
|
[[package]]
|
|
2454
2520
|
name = "thiserror"
|
|
2455
2521
|
version = "1.0.69"
|
|
@@ -2633,7 +2699,7 @@ dependencies = [
|
|
|
2633
2699
|
"log",
|
|
2634
2700
|
"proc-macro2",
|
|
2635
2701
|
"quote",
|
|
2636
|
-
"regress",
|
|
2702
|
+
"regress 0.10.5",
|
|
2637
2703
|
"schemars",
|
|
2638
2704
|
"semver",
|
|
2639
2705
|
"serde",
|
|
@@ -2680,9 +2746,9 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
|
2680
2746
|
|
|
2681
2747
|
[[package]]
|
|
2682
2748
|
name = "unicode-segmentation"
|
|
2683
|
-
version = "1.
|
|
2749
|
+
version = "1.13.1"
|
|
2684
2750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2685
|
-
checksum = "
|
|
2751
|
+
checksum = "da36089a805484bcccfffe0739803392c8298778a2d2f09febf76fac5ad9025b"
|
|
2686
2752
|
|
|
2687
2753
|
[[package]]
|
|
2688
2754
|
name = "unicode-xid"
|
|
@@ -3274,18 +3340,18 @@ dependencies = [
|
|
|
3274
3340
|
|
|
3275
3341
|
[[package]]
|
|
3276
3342
|
name = "zerocopy"
|
|
3277
|
-
version = "0.8.
|
|
3343
|
+
version = "0.8.47"
|
|
3278
3344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
-
checksum = "
|
|
3345
|
+
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
|
|
3280
3346
|
dependencies = [
|
|
3281
3347
|
"zerocopy-derive",
|
|
3282
3348
|
]
|
|
3283
3349
|
|
|
3284
3350
|
[[package]]
|
|
3285
3351
|
name = "zerocopy-derive"
|
|
3286
|
-
version = "0.8.
|
|
3352
|
+
version = "0.8.47"
|
|
3287
3353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
|
-
checksum = "
|
|
3354
|
+
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
|
|
3289
3355
|
dependencies = [
|
|
3290
3356
|
"proc-macro2",
|
|
3291
3357
|
"quote",
|
|
@@ -14,10 +14,11 @@ strum.workspace = true
|
|
|
14
14
|
uuid.workspace = true
|
|
15
15
|
fs2.workspace = true
|
|
16
16
|
sqlparser.workspace = true
|
|
17
|
-
regress = "0.
|
|
17
|
+
regress = "0.11"
|
|
18
18
|
chrono = { version = "0.4", features = ["serde"] }
|
|
19
19
|
xxhash-rust = { version = "0.8", features = ["xxh3"] }
|
|
20
20
|
rayon = "1.10"
|
|
21
|
+
jsonschema = "0.45"
|
|
21
22
|
|
|
22
23
|
[build-dependencies]
|
|
23
24
|
typify = "0.6"
|
|
@@ -28,4 +29,4 @@ prettyplease = "0.2"
|
|
|
28
29
|
|
|
29
30
|
[dev-dependencies]
|
|
30
31
|
tempfile = "3"
|
|
31
|
-
|
|
32
|
+
test-case = "3"
|