10 lines
360 B
Rust
10 lines
360 B
Rust
// file: ks-store/src/constants.rs
|
|
// version: 6
|
|
|
|
//! Local constants for the `ks-store` crate.
|
|
|
|
/// Canonical tracing target for backend-independent storage operations.
|
|
pub(crate) const TRACING_TARGET: &str = "ks-store";
|
|
/// Candidate N1-N3 store schema contract identifier established during `0.5.3`.
|
|
pub const STORE_SCHEMA_CONTRACT_VERSION: &str = "0.5.3";
|