v0.2.13-pre.002

This commit is contained in:
2026-08-28 04:31:32 +02:00
parent 9148920f42
commit 99477d0d2b
10 changed files with 434 additions and 23 deletions

View File

@@ -0,0 +1,16 @@
// file: crates/ksp-interface-lib/src/lib.rs
// version: 1
#![warn(missing_docs)]
#![deny(unreachable_pub)]
#![forbid(unsafe_code)]
//! Passive wire contracts shared by KSP Program implementations.
//!
//! The foundation deliberately starts with the canonical Solana [`Pubkey`]
//! owned by `ksp-core-lib`. Program-facing instruction contracts are added in
//! later slices without introducing runtime, transport, persistence or Program
//! behavior into Interface.
/// Canonical Solana account address primitive owned by `ksp-core-lib`.
pub use ksp_core_lib::Pubkey;