v0.3.2-pre.002-fix.001

This commit is contained in:
2026-08-29 17:42:14 +02:00
parent 153014be9d
commit ced653bfc0
10 changed files with 151 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-store-lib/src/constants.rs
// version: 1
// version: 2
//! Store facade-owned constants.

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-store-lib/src/lib.rs
// version: 1
// version: 2
#![warn(missing_docs)]
#![deny(unreachable_pub)]
@@ -19,3 +19,7 @@ mod constants;
/// Crate-owned tracing target reserved for later Store runtime behavior.
pub(crate) use self::constants::TRACING_TARGET;
// Keep the mandatory crate-owned tracing target part of the compiled scaffold
// without inventing runtime logging before the first behavioral tranche.
const _: &str = TRACING_TARGET;