v0.3.8-pre.004

This commit is contained in:
2026-09-03 12:32:53 +02:00
parent 009b957523
commit c4198ac656
17 changed files with 902 additions and 46 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-store-postgres-lib/tests/public_api.rs
// version: 14
// version: 15
#![warn(missing_docs)]
#![deny(unreachable_pub)]
@@ -117,8 +117,9 @@ fn pre_005_raw_write_bridge_uses_only_backend_independent_models_and_outcomes()
}
#[test]
fn pre_006_raw_list_bridge_uses_backend_independent_query_page_and_reference_models() {
fn v0_3_8_pre_004_raw_list_and_inspection_bridges_use_only_backend_independent_models() {
let _list = ksp_store_postgres_lib::PostgresBackend::list_raw_transactions;
let _inspection = ksp_store_postgres_lib::PostgresBackend::inspect_raw_transactions;
return;
}
@@ -134,6 +135,7 @@ where
+ ksp_store_api::RawAccountObservationWrite
+ ksp_store_api::RawAccountStateRead
+ ksp_store_api::RawAccountStateWrite
+ ksp_store_api::RawTransactionInspectionRead
+ ksp_store_api::RawTransactionObservationRead
+ ksp_store_api::RawTransactionObservationWrite
+ ksp_store_api::RawTransactionRead
@@ -146,7 +148,7 @@ where
}
#[test]
fn pre_008_postgres_backend_implements_exact_raw_capability_set_10_of_10() {
fn v0_3_8_pre_004_postgres_backend_implements_transaction_inspection_as_capability_11_of_11() {
assert_raw_capabilities::<ksp_store_postgres_lib::PostgresBackend>();
return;
}